You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
308 B
HTML

{% macro list_taxonomy(title, kind) %}
<span class="title">{{ title }}</span>
<ul>
{% set tags = get_taxonomy(kind=kind) %}
{% for term in tags.items %}
<li class="item"><a href="{{ term.permalink | safe }}">{{ term.name |capitalize }}</a></li>
{% endfor %}
</ul>
{% endmacro list_categories %}