You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
1.5 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Dear Diary</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.6.2/css/bulma.min.css" />
</head>
<body>
<section class="hero is-primary">
<div class="hero-body">
<div class="container">
<h1 class="title">
Dear Diary
</h1>
</div>
</div>
</section>
<section class="section">
<div class="container">
<article class="media">
<div class="media-content">
<div class="content">
<a href="{% url 'add' %}">Add new entry</a>
</div>
</div>
</article>
{% for entry in entries %}
<article class="media">
<div class="media-content">
<div class="content">
<p>
<strong>{{ entry.date }}</strong>
<br> {{ entry.text }}
</p>
</div>
</div>
</article>
{% endfor %}
</div>
</section>
<footer class="footer">
</footer>
</body>
</html>