From c8cfe63aac73a92ae02354a5306ca5480808daff Mon Sep 17 00:00:00 2001
From: Hans-Peter Oeri <hp@oeri.ch>
Date: Thu, 25 Oct 2018 13:27:51 +0200
Subject: re-do site in schiedsstelle layout

---
 theme/cccevents/templates/categories.html | 15 +++++++++++++++
 1 file changed, 15 insertions(+)
 create mode 100644 theme/cccevents/templates/categories.html

(limited to 'theme/cccevents/templates/categories.html')

diff --git a/theme/cccevents/templates/categories.html b/theme/cccevents/templates/categories.html
new file mode 100644
index 0000000..78a7e70
--- /dev/null
+++ b/theme/cccevents/templates/categories.html
@@ -0,0 +1,15 @@
+{% extends "base.html" %}
+
+{% block title %}{{ SITENAME }} - Categories{% endblock %}
+
+{% block content_title %}
+                <h1>Categories for {{ SITENAME }}</h1>
+{% endblock %}
+
+{% block content %}
+            <ul>
+                {% for category, articles in categories %}
+                <li><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a></li>
+                {% endfor %}
+            </ul>
+{% endblock %}
-- 
cgit v1.2.3