aboutsummaryrefslogtreecommitdiffstats
path: root/templates/wiki/special_all.html
blob: 45a641a6ca3ff71164479cc871f12d735cd2319d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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="{{ url_for("wiki.page", page=page.slug) }}">
                    {{ page.title }} (<span class="fira-code">{{ page.slug }}</span>)
                </a></li>
            {% endfor %}
            </ul>
        {% endfor %}
    </div>
{% endblock %}