summaryrefslogtreecommitdiff
path: root/templates/wiki.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/wiki.html')
-rw-r--r--templates/wiki.html9
1 files changed, 9 insertions, 0 deletions
diff --git a/templates/wiki.html b/templates/wiki.html
index e69de29..66d870b 100644
--- a/templates/wiki.html
+++ b/templates/wiki.html
@@ -0,0 +1,9 @@
+{% extends 'base.html' %}
+
+{% block body %}
+<ul>
+{% for page in pages %}
+ <li><a href="{{ page.url }}">{{ page.title }}</a></li>
+{% endfor %}
+</ul>
+{% endblock %}