2021-02-16 21:32:56 +01:00
|
|
|
{% extends "header_slim.html" %}
|
2020-12-22 13:18:51 +01:00
|
|
|
{% block title %}{{ this.title }}{% endblock %}
|
|
|
|
{% block body %}
|
2021-02-06 15:08:59 +01:00
|
|
|
<section class="content -odd -columns">
|
|
|
|
<div class="content__box">
|
|
|
|
<div class="content__inner_box">
|
|
|
|
<h1>{{ this.title }}</h1>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="content__box">
|
|
|
|
<div class="content__inner_box">
|
|
|
|
{{ this.body }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
2020-12-22 13:18:51 +01:00
|
|
|
{% endblock %}
|