mirror of
https://github.com/pmoreno-rodriguez/grav-theme-future2021.git
synced 2025-07-16 06:58:56 +00:00
12 lines
No EOL
459 B
Twig
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 %} |