aboutsummaryrefslogtreecommitdiffstats
path: root/theme/templates/categories.html
blob: e29be0cacc97993126abcbce31e4a7fc8889086d (plain)
1
2
3
4
5
6
7
8
{% extends "base.html" %}
{% block content %}
<ul>
{% for category, articles in categories %}
    <li><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a></li>
{% endfor %}
</ul>
{% endblock %}