diff options
author | Christian Cleberg <hello@cleberg.net> | 2025-09-04 16:49:49 -0500 |
---|---|---|
committer | Christian Cleberg <hello@cleberg.net> | 2025-09-04 16:49:49 -0500 |
commit | 96964fe6f8a2e4de7fcf85a859e3ec890dd5dca7 (patch) | |
tree | 79502d636c2e363bec7fe6fd36934de646d09f69 /theme/templates/blog.html | |
parent | 8d53754c22fb4db81948d0147511723a87a1c8b7 (diff) | |
download | cleberg.net-96964fe6f8a2e4de7fcf85a859e3ec890dd5dca7.tar.gz cleberg.net-96964fe6f8a2e4de7fcf85a859e3ec890dd5dca7.tar.bz2 cleberg.net-96964fe6f8a2e4de7fcf85a859e3ec890dd5dca7.zip |
shift from monospace theme to a formalized serif theme
Diffstat (limited to 'theme/templates/blog.html')
-rw-r--r-- | theme/templates/blog.html | 6 |
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 %} |