blob: 691d3b2f294af74f3c1eb65eee6d11b9a63f2c08 [file] [log] [blame]
Giulio Fidente44ccac72013-03-21 18:51:03 +01001{% extends "base.html" %}
2{% block title %}{{ SITENAME }} - Categories{% endblock %}
3{% block content %}
Giulio Fidente8305e742013-03-22 23:17:45 +01004<header>
5 <h3>Categories</h3>
6</header>
Giulio Fidentea5278c12013-03-23 00:33:24 +01007<article>
8 <div id="article_text">
9 <ul>
10 {% for category, articles in categories %}
11 <li><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a></li>
12 {% endfor %}
13 </ul>
14 </div>
15</article>
Giulio Fidente91c1d452013-03-22 15:15:17 +010016<footer>
17</footer>
Giulio Fidente44ccac72013-03-21 18:51:03 +010018{% endblock %}