blob: 6c0fb6efb4f6abce4d0247a9775913a25cd040ef (
plain)
1
2
3
4
5
6
7
8
9
|
{% extends "base.html" %}
{% block content %}
<div class="box">
<h2 class="title">Wiki Index</h2>
{% for page in pages %}
<h3><a href='{{ page.title }}/'>{{ page.title }}</a></h3>
{% endfor %}
</div>
{% endblock %}
|