aboutsummaryrefslogtreecommitdiff
path: root/theme/templates/blog.html
diff options
context:
space:
mode:
authorChristian Cleberg <[email protected]>2025-10-14 23:20:22 -0500
committerChristian Cleberg <[email protected]>2025-10-14 23:20:22 -0500
commitd6fa2485fa7fa9c74f8882f1f66ddd7584645d40 (patch)
tree68f79e9a96c557182ee9c37454dd9707c233e17d /theme/templates/blog.html
parent2dc229207a9711daeed625d4af9af75c99c875dc (diff)
downloadcleberg.net-d6fa2485fa7fa9c74f8882f1f66ddd7584645d40.tar.gz
cleberg.net-d6fa2485fa7fa9c74f8882f1f66ddd7584645d40.tar.bz2
cleberg.net-d6fa2485fa7fa9c74f8882f1f66ddd7584645d40.zip
update theme
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 %}