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