lvacula.com-blog/templates/taxonomy_list.html
2024-03-24 15:45:15 -04: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 %}