You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
456 B
HTML

{% extends "index.html" %}
{% block title %}{{ config.title }} - {{ config.extra.label_categories }}{% endblock title %}
{% block header %}
<div class="page-header">
<h1>{{ config.extra.label_categories }}</h1>
</div>
{% endblock header %}
{% block main %}
<ul>
{% for category in terms %}
<li>
<a href="{{ category.permalink }}">{{ category.name }}</a> ({{ category.pages | length }})
</li>
{% endfor %}
</ul>
{% endblock main %}