mirror of
https://github.com/pmoreno-rodriguez/grav-theme-future2021.git
synced 2025-07-23 10:28:57 +00:00
12 lines
463 B
Twig
12 lines
463 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 }}" rel="nofollow" href="{{ base_url }}/{{ taxonomy }}{{ config.system.param_sep }}{{ tax }}">{{ tax }}</a>
|
|
{% endfor %}
|
|
</li>
|
|
</ul>
|
|
{% endif %}
|