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