aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap2/templates/taglist.html
blob: c87ec0e1bc23b16ceb77c744561bad5bee1daea8 (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 %}