2021-02-16 21:32:56 +01:00
|
|
|
{% extends "header_slim.html" %}
|
2021-02-24 23:44:49 +01:00
|
|
|
{%- block title -%}{{ this.title }}{%- endblock -%}
|
|
|
|
{%- block meta_description -%}
|
|
|
|
{%- if this.meta_description is defined and this.meta_description != "" -%}
|
|
|
|
{{ this.meta_description }}
|
|
|
|
{%- else -%}
|
|
|
|
Werkkooperative der Technikfreundinnen eG
|
|
|
|
{%- endif -%}
|
|
|
|
{%- endblock -%}
|
2020-12-22 13:18:51 +01:00
|
|
|
{% block body %}
|
2021-03-17 20:17:38 +01:00
|
|
|
<div class="content__box">
|
|
|
|
<div class="content__inner_box">
|
|
|
|
<h1>{{ this.title }}</h1>
|
2021-03-16 18:27:36 +01:00
|
|
|
</div>
|
2021-03-17 20:17:38 +01:00
|
|
|
</div>
|
|
|
|
<section class="content -odd -columns">
|
|
|
|
<div class="content__box">
|
|
|
|
<div class="content__inner_box">
|
|
|
|
{{ this.body }}
|
2021-03-16 18:27:36 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
2021-03-17 20:17:38 +01:00
|
|
|
{% endblock %}
|