{% extends "base.html" %} {% block title %}All pages — Wiki{% endblock %} {% block content %} {% include "wiki/_layout.html" %}

All wiki pages

{{ total }} page{{ '' if total == 1 else 's' }}, alphabetical.

{% if by_letter %}

{% for ch, _ in by_letter %} {{ ch }} {% endfor %}

{% for ch, pages in by_letter %}
{{ ch }}
{% endfor %} {% else %}
No pages yet.
{% endif %} {% endblock %}