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.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/theme/templates/blog.html b/theme/templates/blog.html
index fc4f6d6..7e15d86 100644
--- a/theme/templates/blog.html
+++ b/theme/templates/blog.html
@@ -11,9 +11,6 @@ main %}
<br>
{% for post in posts %}
<div class="post">
- <time datetime='{{ post.date | strftime("%Y-%m-%d") }}'
- >{{ post.date|strftime("%Y-%m-%d") }}</time
- >
<div class="post-content">
<a href='{{ url_for("blog", slug=post.slug) }}'>{{ post.title }}</a>
{% if post.filetags %}
@@ -24,5 +21,8 @@ main %}
</div>
{% endif %}
</div>
+ <time datetime='{{ post.date | strftime("%Y-%m-%d") }}'
+ >{{ post.date|strftime("%B %d, %Y") }}</time
+ >
</div>
{% endfor %} {% endblock %}