blob: c30153dd22682d2e4ffce381245f738807b6c187 [file] [log] [blame]
Giulio Fidente44ccac72013-03-21 18:51:03 +01001{% 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 %}