aboutsummaryrefslogtreecommitdiffstats
path: root/templates/wiki/special_all.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/wiki/special_all.html')
-rw-r--r--templates/wiki/special_all.html26
1 files changed, 26 insertions, 0 deletions
diff --git a/templates/wiki/special_all.html b/templates/wiki/special_all.html
new file mode 100644
index 00000000..60df4ac3
--- /dev/null
+++ b/templates/wiki/special_all.html
@@ -0,0 +1,26 @@
+{% extends "wiki/base.html" %}
+{% block title %}Wiki | Special: All Pages{% endblock %}
+{% block og_title %}Wiki | Special: All Pages{% endblock %}
+{% block og_description %}A listing for all pages on the wiki{% endblock %}
+{% block content %}
+ <div class="uk-container uk-container-small">
+ <h2 class="uk-title">
+ Special: All Pages
+ </h2>
+ <p class="uk-text-meta">
+ A listing for all pages on the wiki
+ </p>
+
+ {% for letter, pages in letters.items() %}
+ <h3 class="uk-heading-divider">{{ letter }}</h3>
+
+ <ul>
+ {% for page in pages %}
+ <li><a href="{{ page.slug }}">
+ {{ page.title }} (<span style="font-family: monospace;">{{ page.slug }}</span>)
+ </a></li>
+ {% endfor %}
+ </ul>
+ {% endfor %}
+ </div>
+{% endblock %} \ No newline at end of file