summaryrefslogtreecommitdiff
path: root/samples/themes/notmyidea/templates/categories.html
diff options
context:
space:
mode:
Diffstat (limited to 'samples/themes/notmyidea/templates/categories.html')
-rw-r--r--samples/themes/notmyidea/templates/categories.html8
1 files changed, 8 insertions, 0 deletions
diff --git a/samples/themes/notmyidea/templates/categories.html b/samples/themes/notmyidea/templates/categories.html
index e69de29b..7e4bd2c9 100644
--- a/samples/themes/notmyidea/templates/categories.html
+++ b/samples/themes/notmyidea/templates/categories.html
@@ -0,0 +1,8 @@
+{% extends "base.html" %}
+{% block content %}
+<ul>
+{% for category, articles in categories %}
+ <li>{{ category }}</li>
+{% endfor %}
+</ul>
+{% endblock %}