blog/theme/darkstrap/templates/categories.html

9 lines
186 B
HTML
Raw Permalink Normal View History

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