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" %} |
Giulio Fidente | 91c1d45 | 2013-03-22 15:15:17 +0100 | [diff] [blame^] | 6 | <div id="like_article"> |
Giulio Fidente | 44ccac7 | 2013-03-21 18:51:03 +0100 | [diff] [blame] | 7 | <ul> |
| 8 | {% for category, articles in categories %} |
| 9 | <li><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a></li> |
| 10 | {% endfor %} |
| 11 | </ul> |
Giulio Fidente | 91c1d45 | 2013-03-22 15:15:17 +0100 | [diff] [blame^] | 12 | </div> |
| 13 | <footer> |
| 14 | </footer> |
Giulio Fidente | 44ccac7 | 2013-03-21 18:51:03 +0100 | [diff] [blame] | 15 | {% endblock %} |