diff options
author | Christian Cleberg <hello@cleberg.net> | 2024-07-28 21:53:25 -0500 |
---|---|---|
committer | Christian Cleberg <hello@cleberg.net> | 2024-07-28 21:53:25 -0500 |
commit | bc5e26d73dc0da6cfba8046f302e540c1d0f4497 (patch) | |
tree | 7e162703cab1118aaaab2f9159f07d18c045b1d6 /theme/templates | |
parent | 79b16809e66d69651979215055ed808171769e43 (diff) | |
download | cleberg.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.html | 6 |
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") }}' ><{{ post.date|strftime("%Y-%m-%d %a %H:%M:%S") }}></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> |