news/themes/pinpress/templates/partials/taxonomylist.html.twig

15 lines
444 B
Twig
Raw Normal View History

{% set taxlist = taxonomylist.get() %}
{% if taxlist %}
<div class="widget-content list-label-widget-content">
<ul>
{% for tax,value in taxlist[taxonomy]|slice(0, 5) %}
<li>
{% set active = uri.param(taxonomy) == tax ? 'active' : '' %}
<a class="{{ active }}" href="{{ base_url_absolute }}/{{ taxonomy }}{{ config.system.param_sep }}{{ tax|e('url') }}">{{ tax }}</a>
</li>
{% endfor %}
</ul>
</div>
{% endif %}