diff options
author | Christian Cleberg <hello@cleberg.net> | 2025-09-20 20:48:16 -0500 |
---|---|---|
committer | Christian Cleberg <hello@cleberg.net> | 2025-09-20 20:48:16 -0500 |
commit | d7978b4ccf4c6c56b1c2888791f73271f91fd12c (patch) | |
tree | 587bd7191d766aa4910a8b21dcb5da0d71061c08 /theme/templates/blog.html | |
parent | 01a629ca5a26798c67a29bab7a7c9f9def1f80dd (diff) | |
download | cleberg.net-d7978b4ccf4c6c56b1c2888791f73271f91fd12c.tar.gz cleberg.net-d7978b4ccf4c6c56b1c2888791f73271f91fd12c.tar.bz2 cleberg.net-d7978b4ccf4c6c56b1c2888791f73271f91fd12c.zip |
EXTREME MINIMALISM
Diffstat (limited to 'theme/templates/blog.html')
-rw-r--r-- | theme/templates/blog.html | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/theme/templates/blog.html b/theme/templates/blog.html index 7e15d86..b42959d 100644 --- a/theme/templates/blog.html +++ b/theme/templates/blog.html @@ -10,19 +10,11 @@ main %} </p> <br> {% for post in posts %} -<div class="post"> - <div class="post-content"> - <a href='{{ url_for("blog", slug=post.slug) }}'>{{ post.title }}</a> - {% if post.filetags %} - <div class="post-tags"> - {% for tag in post.filetags %} - <span class="tag">{{ tag }}</span> - {% endfor %} - </div> - {% endif %} - </div> +<div> <time datetime='{{ post.date | strftime("%Y-%m-%d") }}' >{{ post.date|strftime("%B %d, %Y") }}</time > + <a href='{{ url_for("blog", slug=post.slug) }}'>{{ post.title }}</a> </div> +<br> {% endfor %} {% endblock %} |