forked from hacc/haccfiles
16 lines
337 B
HTML
16 lines
337 B
HTML
|
{% extends "index.html" %}
|
||
|
|
||
|
{% block content %}
|
||
|
<h1>{{ section.title }}</h1>
|
||
|
<p>{{ section.content | safe }}</p>
|
||
|
<p>Pages in section</p>
|
||
|
<ul>
|
||
|
{% for page in section.pages | reverse %}
|
||
|
<li>
|
||
|
<em> <a href="{{ page.permalink }}"> {{ page.title }} </a> </em>
|
||
|
</li>
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
|
||
|
{% endblock content %}
|