zola-inky-fork/templates/taxonomy_list.html
2023-02-01 17:58:59 +00:00

14 lines
321 B
HTML

{% extends "base.html" %}
{% block content %}
<h1>{{ taxonomy.name | capitalize }}</h1>
{% if terms %}
<ul class="tag-cloud">
{% for term in terms %}
<li><a href="{{ term.permalink | safe }}">{{ term.name }}<sup>{{ term.pages | length }}</sup></a></li>
{% endfor %}
</ul>
{% endif %}
{% endblock content %}