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