summaryrefslogtreecommitdiff
path: root/templates/index.html
diff options
context:
space:
mode:
authorNavan Chauhan <navanchauhan@gmail.com>2023-10-18 20:00:35 -0600
committerNavan Chauhan <navanchauhan@gmail.com>2023-10-18 20:00:35 -0600
commit1c90a3f7fb822b88195e3a9b966899720b9ae188 (patch)
tree4851bae8f7309a6a16f0a41658027c3e95eb8a03 /templates/index.html
parentfd0a889870954fd700cbc0184189950ed0859663 (diff)
add link to tags
Diffstat (limited to 'templates/index.html')
-rw-r--r--templates/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/index.html b/templates/index.html
index a83e6c3..9f68a00 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -15,7 +15,7 @@
<li>Published On: {{post.date}}</li>
<li>Tags:
{% for tag in post.tags %}
- {{ tag }}{{ ", " if not loop.last else "" }}
+ <a href='/tags/{{tag}}.html'>{{ tag }}</a>{{ ", " if not loop.last else "" }}
{% endfor %}
</ul>