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

13 lines
232 B
Twig

{% 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 %}