12345678910 |
- {% set taxlist = children_only is defined ? taxonomylist.getChildPagesTags() : taxonomylist.get() %}
- {% if taxlist %}
- <span class="tags">
- {% for tax,value in taxlist[taxonomy] %}
- {% set active = uri.param(taxonomy) == tax? 'active' : '' %}
- <a class="{{ active }}" href="{{ base_url }}/{{ taxonomy }}{{ config.system.param_sep }}{{ tax }}">{{ tax }}</a>
- {% endfor %}
- </span>
- {% endif %}
|