diff options
| author | Christian Cleberg <[email protected]> | 2024-07-28 21:53:25 -0500 |
|---|---|---|
| committer | Christian Cleberg <[email protected]> | 2024-07-28 21:53:25 -0500 |
| commit | e9491e803e4ba1faa26efcbbedb6b4ec00195b6f (patch) | |
| tree | 7e162703cab1118aaaab2f9159f07d18c045b1d6 /theme/templates | |
| parent | 1b5869f8a857c5bd5e6230a225ecbe6671564116 (diff) | |
| download | cleberg.net-e9491e803e4ba1faa26efcbbedb6b4ec00195b6f.tar.gz cleberg.net-e9491e803e4ba1faa26efcbbedb6b4ec00195b6f.tar.bz2 cleberg.net-e9491e803e4ba1faa26efcbbedb6b4ec00195b6f.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> |
