summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornavanchauhan <navanchauhan@gmail.com>2022-05-22 11:10:19 -0600
committernavanchauhan <navanchauhan@gmail.com>2022-05-22 11:10:19 -0600
commit885747d29973e3a1b04a68bc40a3e72ca0b711e7 (patch)
tree5c5540ad670d17b5443dc282c46ff0520294b80a
parentad5284e8808c6a462a809b2c2e631967ee7179c6 (diff)
removed trailing comma
-rw-r--r--templates/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/index.html b/templates/index.html
index cc66cd3..a651ea2 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -14,7 +14,7 @@
<li>Published On: {{post.date}}</li>
<li>Tags:
{% for tag in post.tags %}
- {{ tag }},
+ {{ tag }}{{ ", " if not loop.last else "" }}
{% endfor %}
</ul>