pages/templates/taxonomy_list.html
2025-10-25 10:41:47 +06:30

20 lines
583 B
HTML

{% extends "page.html" %}
{% block title %}{{ config.title }} | {{ taxonomy.name | capitalize }}{% endblock title %}
{% block content %}
<main>
<h1>{{ taxonomy.name | capitalize }}</h1>
<div>
<ul>
{% for term in terms %}
<li>
<a href="{{ term.permalink }}">{{ term.name }}</a>
{% set count = term.pages | length %}
<span class="secondary small">({{ count }} page{{ count | pluralize }})</span>
</li>
{% endfor %}
</ul>
</div>
</main>
{% endblock content %}