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