diff options
-rw-r--r-- | templates/entry.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/entry.html b/templates/entry.html index 619c429..08f8ca0 100644 --- a/templates/entry.html +++ b/templates/entry.html @@ -13,9 +13,9 @@ {% if 'tags' in entry %} <div id="tags"> Tags: - {% for tag in entry['tags'] %} - <a href="tag-{{ tag }}.html">{{ tag }}</a> - {% endfor %} + {% set comma = joiner(",") %} + {% for tag in entry['tags'] %}{{ comma() }} + <a href="tag-{{ tag }}.html">{{ tag }}</a>{% endfor %} </div> {% endif %} </footer> |