aboutsummaryrefslogtreecommitdiffstats
path: root/franticworld/templates/categories.html
blob: 6708a474db179d0502a7111838d689737b998112 (plain)
1
{% extends "base.html" %}
{% block content %}
<ul>
{% for category, articles in categories %}
	<li><a href="{{ category.url }}">{{ category }}</a></li>
{% endfor %}
</ul>
{% endblock %}