aboutsummaryrefslogtreecommitdiff
path: root/theme/templates/blog.html
diff options
context:
space:
mode:
Diffstat (limited to 'theme/templates/blog.html')
-rw-r--r--theme/templates/blog.html5
1 files changed, 2 insertions, 3 deletions
diff --git a/theme/templates/blog.html b/theme/templates/blog.html
index b42959d..5aa3293 100644
--- a/theme/templates/blog.html
+++ b/theme/templates/blog.html
@@ -10,11 +10,10 @@ main %}
</p>
<br>
{% for post in posts %}
-<div>
+<div class="post">
<time datetime='{{ post.date | strftime("%Y-%m-%d") }}'
- >{{ post.date|strftime("%B %d, %Y") }}</time
+ >{{ post.date|strftime("%Y-%m-%d") }}</time
>
<a href='{{ url_for("blog", slug=post.slug) }}'>{{ post.title }}</a>
</div>
-<br>
{% endfor %} {% endblock %}