grav-theme-libretic/templates/partials/taxonomylist.html.twig

13 lines
232 B
Twig
Raw Normal View History

2015-01-22 13:28:29 +01:00
{% set taxlist = taxonomylist.get() %}
{% if taxlist %}
<span class="tags">
{% for tax,value in taxlist[taxonomy] %}
<a href="{{ base_url }}/tag:{{ tax|e('url') }}">{{ tax }}</a>
{% endfor %}
</span>
{% endif %}