summaryrefslogtreecommitdiff
path: root/templates/wiki.html
blob: 66d870b5b32218163bd98a4c1eeed5d91d240f04 (plain)
1
2
3
4
5
6
7
8
9
{% extends 'base.html' %}

{% block body %}
<ul>
{% for page in pages %}
  <li><a href="{{ page.url }}">{{ page.title }}</a></li>
{% endfor %}
</ul>
{% endblock %}