Giulio Fidente | 44ccac7 | 2013-03-21 18:51:03 +0100 | [diff] [blame] | 1 | {% extends "base.html" %} |
2 | {% block title %}{{ SITENAME }} - Categories{% endblock %} | ||||
3 | {% block content %} | ||||
4 | {% set custom_header = "Categories" %} | ||||
5 | {% include "header.html" %} | ||||
6 | <dl> | ||||
7 | <ul> | ||||
8 | {% for category, articles in categories %} | ||||
9 | <li><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a></li> | ||||
10 | {% endfor %} | ||||
11 | </ul> | ||||
12 | </dl> | ||||
13 | {% endblock %} |