aboutsummaryrefslogtreecommitdiffstats
path: root/SOB/templates/categories.html
blob: e311dfcc64c7ae5d8115049d75a37707c9a670c1 (plain) (blame)
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 %}