aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap2/templates/taglist.html
blob: b553f7f6a2a2bd79e43c92ec9ea80188c860871e (plain)
1
2
3
4
5
6
{% if article.tags %}
<span class="label">Tags</span>
{% for tag in article.tags %}
	<a href="{{ SITEURL }}/{{ tag.url }}"><i class="icon-tag"></i>{{ tag }}</a>
{% endfor %}
{% endif %}