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