aboutsummaryrefslogtreecommitdiffstats
path: root/notebook/templates/categories.html
diff options
context:
space:
mode:
Diffstat (limited to 'notebook/templates/categories.html')
-rw-r--r--notebook/templates/categories.html9
1 files changed, 9 insertions, 0 deletions
diff --git a/notebook/templates/categories.html b/notebook/templates/categories.html
new file mode 100644
index 0000000..8ea08c4
--- /dev/null
+++ b/notebook/templates/categories.html
@@ -0,0 +1,9 @@
+{% extends "base.html" %}
+{% block content %}
+<h2>Categories</h2>
+<ul class="category_folder">
+{% for category, articles in categories %}
+ <li><a href="{{ category.url }}">{{ category }}</a></li>
+{% endfor %}
+</ul>
+{% endblock %} \ No newline at end of file