blog/themes/bootstrap2-dark/templates/categories.html

9 lines
186 B
HTML
Raw Normal View History

2020-04-11 09:23:56 +00:00
{% extends "base.html" %}
{% block content %}
<ul>
{% for category, articles in categories %}
<li><a href="{{ category.url }}">{{ category }}</a></li>
{% endfor %}
</ul>
{% endblock %}