2021-06-13 22:17:05 +02:00
|
|
|
{% extends "base.html" %} {% block content %}
|
2021-06-14 11:57:06 +02:00
|
|
|
<h3>{{ section.title }}</h3>
|
2021-06-13 22:17:05 +02:00
|
|
|
<article>
|
|
|
|
<ul>
|
|
|
|
{% for page in section.pages %}
|
|
|
|
<li><a href="{{ page.permalink | safe }}">{{ page.title }}</a></li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
2021-06-14 12:02:33 +02:00
|
|
|
<div>
|
|
|
|
{{ section.content | safe }}
|
|
|
|
</div>
|
2021-06-13 22:17:05 +02:00
|
|
|
</article>
|
|
|
|
{% endblock content %}
|