aboutsummaryrefslogtreecommitdiffstats
path: root/pelican-bootstrap3/templates/includes/taglist.html
blob: bcaa4705aa2082b0eeb61f2c09691fd70d2e4f00 (plain)
1
2
3
4
5
6
7
8
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 %}