blob: c9ed8b11e90d95417c9a96c8ac98baae9ccec86b (
plain)
1
2
3
4
5
6
7
8
|
{% extends "base.html" %} {% block content %}
<h1>{{ section.title }}</h1>
{% for page in section.pages %}
<ul>
<li><a href="{{ page.path }}">{{ page.title }}</a></li>
</ul>
{% endfor %} {% endblock %}
|