edgarluque.com/templates/taxonomy_list.html
2021-12-24 12:02:07 +01:00

15 lines
301 B
HTML

{% extends "base.html" %} {% block content %}
<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
>
</li>
{% endfor %}
</ul>
{% endblock content %}