webseite/templates/page.html

24 lines
666 B
HTML
Raw Permalink Normal View History

{% 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>
{%- endblock -%}