2021-02-16 21:32:56 +01:00
|
|
|
{% extends "header_with_logo.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 -%}
|
2021-02-04 21:02:33 +01:00
|
|
|
{% block body %}
|
2021-03-06 14:47:01 +01:00
|
|
|
|
2021-03-17 23:08:57 +01:00
|
|
|
<!-- Startpage content looop -->
|
2021-02-14 23:48:56 +01:00
|
|
|
{% for blk in this.section.blocks %}
|
2021-03-17 23:08:57 +01:00
|
|
|
{{ blk }}
|
2021-02-04 21:02:33 +01:00
|
|
|
{% endfor %}
|
2021-03-17 23:08:57 +01:00
|
|
|
<!-- Startpage content loop ende -->
|
2021-03-18 02:11:05 +01:00
|
|
|
|
2021-02-04 21:02:33 +01:00
|
|
|
{% endblock %}
|