{% extends "base" %}
{% block content %}
<h1>This is {{ title }}</h1>
<h3>Here are the available pages :</h3>
<ul>
{% for s in items %}
<li>
<a href="/{{ s }}">
{{ s }}
</a>
</li>
{% endfor %}
</ul>
{% endblock content %}