blob: 7046137799f12048d596cae07f0a1b39d452e4eb [file] [log] [blame]
Giulio Fidente44ccac72013-03-21 18:51:03 +01001{% extends "base.html" %}
2{% block title %}{{ SITENAME }} - Categories{% endblock %}
3{% block content %}
Giulio Fidentea5278c12013-03-23 00:33:24 +01004<article>
5 <div id="article_text">
6 <ul>
7 {% for category, articles in categories %}
8 <li><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a></li>
9 {% endfor %}
10 </ul>
11 </div>
12</article>
Giulio Fidente44ccac72013-03-21 18:51:03 +010013{% endblock %}