16 lines
663 B
Twig
Raw Normal View History

2025-03-04 11:59:05 -05:00
{#- param: vocabulary ~#}
{%- set vocabs = site.taxonomies|filter(v => v.id == vocabulary|default or vocabulary|default is empty) ~%}
{%- if vocabs|length > 0 ~%}
<nav class="terms">
<ul>
{%- for vocab in vocabs ~%}
{%- set vocabulary = vocab.id ~%}
{%- if page[vocabulary] is defined ~%}
{%- for term in page[vocabulary] ~%}
<li><a class="term" href="{{ url(vocabulary ~ '/' ~ term, {language: site.language}) }}">{{ term }}</a></li>
{%- endfor ~%}
{%- endif ~%}
{%- endfor ~%}
</ul>
</nav>
{%- endif ~%}