edgarluque.com/templates/taxonomy_list.html

19 lines
443 B
HTML
Raw Normal View History

2024-07-01 12:22:36 +00:00
{% extends "base.html" %}
{% block title %}{{ taxonomy.name|capitalize }}{% endblock title %}
{% block content %}
2021-12-24 11:02:07 +00:00
<h1 class="capitalize">{{ taxonomy.name }}</h1>
<ul class="categories">
{% for term in terms %}
<li>
<a href="{{ term.permalink }}" title="{{ term.name }}" class="capitalize"
>{{ term.name }}</a
2024-07-01 12:22:36 +00:00
> <span style="color: rgb(150, 150, 150);">({{ term.page_count }})</span>
2021-12-24 11:02:07 +00:00
</li>
{% endfor %}
</ul>
{% endblock content %}