Files
site_internet/templates/sections.html

15 lines
284 B
HTML

{% extends "base.html" %}
{% block content %}
<main class="main-content">
<h1>
{{section.title}}
</h1>
<ul>
{% for page in section.pages %}
<li><a href="{{page.permalink | safe }}">{{ page.title }}</a></li>
{% endfor %}
</ul>
</main>
{% endblock content %}