2022-05-18 00:35:37 +02:00
|
|
|
{% extends "header_slim.html" %}
|
|
|
|
{%- block title -%}{{ this.title }}{%- endblock -%}
|
|
|
|
{%- block meta_description -%}
|
|
|
|
{%- if this.meta_description is defined and this.meta_description != "" -%}
|
|
|
|
{{- this.meta_description -}}
|
|
|
|
{%- else -%}
|
|
|
|
C3 Waffel Operation Center
|
|
|
|
{%- endif -%}
|
|
|
|
{%- endblock -%}
|
|
|
|
{%- block body %}
|
|
|
|
<div class="content__box">
|
|
|
|
<div class="content__inner_box">
|
|
|
|
<h1>{{ this.title }}</h1>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<section class="content -odd">
|
|
|
|
<div class="content__box">
|
|
|
|
<div class="content__inner_box -width_constraint">
|
|
|
|
{{ this.body }}
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-02-12 17:45:44 +01:00
|
|
|
</section>
|
2022-05-18 00:35:37 +02:00
|
|
|
{%- endblock -%}
|