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