17 lines
386 B
HTML
17 lines
386 B
HTML
|
{% import "_macros.html" as macros %}
|
||
|
{% extends "index.html" %}
|
||
|
|
||
|
{% block title %}{{ section.title }} | {{ super() }} {% endblock title %}
|
||
|
|
||
|
{% block header %}
|
||
|
<header class="box-shadow">
|
||
|
{{ macros::render_header() }}
|
||
|
</header>
|
||
|
{% endblock header %}
|
||
|
|
||
|
{% block content %}
|
||
|
<div class="heading-text">{{ section.description }}</div>
|
||
|
{{ section.content | safe }}
|
||
|
{% endblock content %}
|
||
|
|