blog.notmyidea.org/theme/templates/categories.html

8 lines
189 B
HTML

{% extends "base.html" %}
{% block content %}
<ul>
{% for category, articles in categories %}
<li><a href="{{ category.url }}">{{ category }}</a></li>
{% endfor %}
</ul>
{% endblock %}