aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap2/templates/categories.html
diff options
context:
space:
mode:
Diffstat (limited to 'bootstrap2/templates/categories.html')
-rw-r--r--bootstrap2/templates/categories.html10
1 files changed, 10 insertions, 0 deletions
diff --git a/bootstrap2/templates/categories.html b/bootstrap2/templates/categories.html
new file mode 100644
index 0000000..911d6ec
--- /dev/null
+++ b/bootstrap2/templates/categories.html
@@ -0,0 +1,10 @@
+{% extends "base.html" %}
+{% block content %}
+<div class="span12">
+ <ul>
+ {% for category, articles in categories %}
+ <li><a href="{{ category.url }}">{{ category }}</a></li>
+ {% endfor %}
+ </ul>
+</div>
+{% endblock %}