2023-02-06 12:20:18 +01:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
2023-02-15 05:22:13 +01:00
|
|
|
{% block title %}
|
|
|
|
{{ config.title }}
|
|
|
|
{% endblock title %}
|
|
|
|
|
2023-02-06 12:20:18 +01:00
|
|
|
{% block content %}
|
|
|
|
<h1 class="title">{{ config.title }}</h1>
|
|
|
|
<div class="content">
|
|
|
|
<div class="block">
|
|
|
|
{{ section.content | safe }}
|
|
|
|
</div>
|
|
|
|
<div class="block">
|
|
|
|
<ul>
|
|
|
|
{% for subsection in section.subsections | reverse %}
|
|
|
|
{% set subsection = get_section(path=subsection) %}
|
|
|
|
<li><a href="{{ subsection.path | safe }}">{{ subsection.title | safe }}</a></li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock content %}
|