summaryrefslogtreecommitdiffstats
path: root/themes/lv2/templates/includes/taglist.html
diff options
context:
space:
mode:
Diffstat (limited to 'themes/lv2/templates/includes/taglist.html')
-rw-r--r--themes/lv2/templates/includes/taglist.html9
1 files changed, 9 insertions, 0 deletions
diff --git a/themes/lv2/templates/includes/taglist.html b/themes/lv2/templates/includes/taglist.html
new file mode 100644
index 0000000..bcaa470
--- /dev/null
+++ b/themes/lv2/templates/includes/taglist.html
@@ -0,0 +1,9 @@
+{% if article.tags %}
+<span class="label label-default">Tags</span>
+{% for tag in article.tags %}
+ <a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a>
+ {% if not loop.last %}
+ /
+ {% endif %}
+{% endfor %}
+{% endif %}