blob: a639502850f247197bea785e0edd32e295da5a09 [file] [log] [blame]
{% extends "base.html" %}
{% block title %}Categories | {{ SITENAME }}{% endblock %}
{% block description %}A listing of all categories on this site{% endblock %}
{% block content %}
<article>
<div class="article_text">
<ul>
{% for category, articles in categories|sort %}
<li><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a> ({{ articles|count }})</li>
{% endfor %}
</ul>
</div>
</article>
{% endblock %}