grav-theme-future2021/templates/partials/taxonomylist.html.twig
2023-10-28 22:12:13 +02:00

10 lines
383 B
Twig

<ul class="menulink">
<li>
{% for tax,value in taxlist[taxonomy] %}
{% if value is not empty %}
{% set active = uri.param(taxonomy) == tax? 'active' : '' %}
<a class="tags {{ active }}" rel="nofollow" href="{{ base_url }}/{{ taxonomy }}{{ config.system.param_sep }}{{ tax }}">{{ tax }}</a>
{% endif %}
{% endfor %}
</li>
</ul>