webseite/templates/page.html

24 lines
666 B
HTML
Raw Normal View History

2021-06-24 23:44:12 +02:00
{% extends "header_slim.html" %}
{%- block title -%}{{ this.title }}{%- endblock -%}
{%- block meta_description -%}
{%- if this.meta_description is defined and this.meta_description != "" -%}
2021-08-11 01:51:48 +02:00
{{- this.meta_description -}}
2021-06-24 23:44:12 +02:00
{%- else -%}
2021-08-11 01:51:48 +02:00
C3 Waffel Operation Center
2021-06-24 23:44:12 +02:00
{%- endif -%}
{%- endblock -%}
2021-08-11 01:51:48 +02:00
{%- block body %}
2021-06-24 23:44:12 +02:00
<div class="content__box">
2021-08-11 01:51:48 +02:00
<div class="content__inner_box">
<h1>{{ this.title }}</h1>
</div>
2021-06-24 23:44:12 +02:00
</div>
<section class="content -odd">
2021-08-11 01:51:48 +02:00
<div class="content__box">
<div class="content__inner_box -width_constraint">
{{ this.body }}
2021-06-24 23:44:12 +02:00
</div>
2021-08-11 01:51:48 +02:00
</div>
2019-02-12 17:45:44 +01:00
</section>
2021-08-11 01:51:48 +02:00
{%- endblock -%}