15 lines
350 B
HTML
15 lines
350 B
HTML
{% extends "section.html" %}
|
|
{% block content %}
|
|
<article class="content">
|
|
<header>
|
|
<h1>{{ section.title }}</h1>
|
|
</header>
|
|
{{ section.content | safe }}
|
|
<ul>
|
|
{% for page in section.pages %}
|
|
<li><a href="{{ page.path }}">{{ page.title }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</article>
|
|
{% endblock content %}
|