diff options
author | navanchauhan <navanchauhan@gmail.com> | 2022-05-22 11:10:19 -0600 |
---|---|---|
committer | navanchauhan <navanchauhan@gmail.com> | 2022-05-22 11:10:19 -0600 |
commit | 885747d29973e3a1b04a68bc40a3e72ca0b711e7 (patch) | |
tree | 5c5540ad670d17b5443dc282c46ff0520294b80a /templates | |
parent | ad5284e8808c6a462a809b2c2e631967ee7179c6 (diff) |
removed trailing comma
Diffstat (limited to 'templates')
-rw-r--r-- | templates/index.html | 2 |
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> |