pelican-theme-bootstrap4/templates/includes/taglist.html
2019-04-19 21:30:55 +03:00

10 lines
260 B
HTML

{% if article.tags %}
<span class="label label-default">&nbsp;|&nbsp;{{ _('Tags') }}:&nbsp;</span>
{% for tag in article.tags %}
<a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a>
{% if not loop.last %}
/
{% endif %}
{% endfor %}
{% endif %}