2021-06-13 22:17:05 +02:00
|
|
|
{% extends "base.html" %} {% block content %}
|
2021-07-19 00:06:21 +02:00
|
|
|
<h2>{{ section.title }}</h2>
|
2021-07-28 18:23:57 +02:00
|
|
|
<ul>
|
2023-03-10 15:08:43 +01:00
|
|
|
{% for page in section.pages %}
|
|
|
|
<li><a href="{{ page.permalink | safe }}">{{ page.title }}</a></li>
|
|
|
|
{% endfor %}
|
2021-07-28 18:23:57 +02:00
|
|
|
</ul>
|
2023-03-10 15:08:43 +01:00
|
|
|
<div>{{ section.content | safe }}</div>
|
2021-06-13 22:17:05 +02:00
|
|
|
{% endblock content %}
|