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

11 lines
351 B

{% extends "base.html" %}
{% block title %}{{ SHORT_SITENAME }} - Categories{% endblock %}
{% block content %}
<header>Categories on {{ SITENAME }}</header>
<ul>
{% for cat, articles in categories|sort %}
<li><a href="{{ SITEURL }}/{{ cat.url }}">{{ cat }}</a> ({{ articles|count }})</li>
{% endfor %}
</ul>
{% endblock %}