aboutsummaryrefslogtreecommitdiff
path: root/theme/templates
diff options
context:
space:
mode:
authorChristian Cleberg <hello@cleberg.net>2024-07-28 21:53:25 -0500
committerChristian Cleberg <hello@cleberg.net>2024-07-28 21:53:25 -0500
commitbc5e26d73dc0da6cfba8046f302e540c1d0f4497 (patch)
tree7e162703cab1118aaaab2f9159f07d18c045b1d6 /theme/templates
parent79b16809e66d69651979215055ed808171769e43 (diff)
downloadcleberg.net-bc5e26d73dc0da6cfba8046f302e540c1d0f4497.tar.gz
cleberg.net-bc5e26d73dc0da6cfba8046f302e540c1d0f4497.tar.bz2
cleberg.net-bc5e26d73dc0da6cfba8046f302e540c1d0f4497.zip
add support for filetags
Diffstat (limited to 'theme/templates')
-rw-r--r--theme/templates/post.html6
1 files changed, 6 insertions, 0 deletions
diff --git a/theme/templates/post.html b/theme/templates/post.html
index 58bdb72..c8c1eb9 100644
--- a/theme/templates/post.html
+++ b/theme/templates/post.html
@@ -14,6 +14,12 @@
<time datetime='{{ post.date|strftime("%Y-%m-%d") }}'
>&lt;{{ post.date|strftime("%Y-%m-%d %a %H:%M:%S") }}&gt;</time
>
+ {% endif %} {% if post.filetags %}
+ <p class="tags">
+ {% for tag in post.filetags %}
+ <span class="tag">{{ tag }}</span>
+ {% endfor %}
+ </p>
{% endif %}
</section>
<section>{{ post.html | safe }}</section>