2025-01-03 16:28:29 +01:00
|
|
|
{% import "_macros.html" as macros %}
|
2022-05-10 17:52:28 +02:00
|
|
|
{% extends "index.html" %}
|
2025-01-03 16:28:29 +01:00
|
|
|
|
|
|
|
{% block title %}{{ section.title }} | {{ super() }} {% endblock title %}
|
|
|
|
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="heading-text">{{ section.description }}</div>
|
|
|
|
{{ section.content | safe }}
|
|
|
|
{% endblock content %}
|