summaryrefslogtreecommitdiff
path: root/templates/index.html
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
commit235bb7256ad966de87a3b5ab433598271a3d21d0 (patch)
tree1506006c0ba81ba1293ba8bfa6645b7546aa88e4 /templates/index.html
parente036753ed3ab229d50cfb0757acff648b18ba5d6 (diff)
removed trailing comma
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 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>