blob: 3f298a4eb7ef58b5cf8e4492613fcd1629c6132c [file] [log] [blame]
{% extends "base.html" %}
{% block title %}Categories{% endblock %}
{% 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 %}