blob: 34deba237a62dcdfd7c9587d211befa9b2134776 [file] [log] [blame]
{% extends "base.html" %}
{% block title %}Categories | {{ SITENAME }}{% endblock %}
{% block subheader %}
{% include "modules/blogsubheader.html" %}
{% endblock subheader %}
{% block content %}
<article>
<div class="article_text">
<ul>
{% for category, articles in categories %}
<li><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a> ({{ articles|count }})</li>
{% endfor %}
</ul>
</div>
</article>
{% endblock %}