mirror of
https://github.com/pmoreno-rodriguez/grav-theme-future2021.git
synced 2025-07-23 10:28:57 +00:00
10 lines
383 B
Twig
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>
|