1bit.pw/templates/blog/categories/list.html

13 lines
273 B
HTML

{% extends "content.html" %}
{% block content %}
<h1>Categories</h1>
{% if terms %}
<ul>
{% for term in terms %}
<li><a href="{{ term.permalink }}">{{ term.name }}</a> ({{ term.pages | length }})</li>
{% endfor %}
</ul>
{% endif %}
{% endblock content %}