sitolost/pelican-themes/pelican-bootstrap3bis/templates/includes/taglist.html

10 lines
240 B
HTML
Raw Permalink Normal View History

2019-10-23 14:37:16 +02:00
{% 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 %}