aboutsummaryrefslogtreecommitdiff
path: root/theme/templates/blog.html
diff options
context:
space:
mode:
authorChristian Cleberg <[email protected]>2025-06-03 16:21:27 -0500
committerChristian Cleberg <[email protected]>2025-06-03 16:21:27 -0500
commit848d7c4742ce0a4fcf75190f44ce57870bee8aa9 (patch)
tree68714c1778ad89137187f98f3f9ebaf49496cb56 /theme/templates/blog.html
parente7963b42bb8c4ea605c40c750ef1623ed0781c1f (diff)
downloadcleberg.net-848d7c4742ce0a4fcf75190f44ce57870bee8aa9.tar.gz
cleberg.net-848d7c4742ce0a4fcf75190f44ce57870bee8aa9.tar.bz2
cleberg.net-848d7c4742ce0a4fcf75190f44ce57870bee8aa9.zip
feat(blog): show filetags on blog roll
Diffstat (limited to 'theme/templates/blog.html')
-rw-r--r--theme/templates/blog.html11
1 files changed, 10 insertions, 1 deletions
diff --git a/theme/templates/blog.html b/theme/templates/blog.html
index aa2566c..ff09d37 100644
--- a/theme/templates/blog.html
+++ b/theme/templates/blog.html
@@ -13,6 +13,15 @@ main %}
<time datetime='{{ post.date | strftime("%Y-%m-%d") }}'
>{{ post.date|strftime("%Y-%m-%d") }}</time
>
- <a href='{{ url_for("blog", slug=post.slug) }}'>{{ post.title }}</a>
+ <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>
{% endfor %} {% endblock %}