grav-theme-future2021/templates/partials/taxonomylist.html.twig
pmoreno.rodriguez e2a4c0fa5b
Initial commit
2022-02-04 07:12:18 +01:00

12 lines
No EOL
459 B
Twig

{% set taxlist = children_only is defined ? taxonomylist.getChildPagesTags() : taxonomylist.get() %}
{% if taxlist %}
<ul class="menulink">
<li>
{% for tax,value in taxlist[taxonomy]|sort %}
{% set active = uri.param(taxonomy) == tax? 'active' : '' %}
<a class="tags {{ active }}" href="{{ base_url }}/{{ taxonomy }}{{ config.system.param_sep }}{{ tax }}">{{ tax }}</a>
{% endfor %}
</li>
</ul>
{% endif %}