webseite/templates/homepage.html

19 lines
512 B
HTML
Raw Permalink Normal View History

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 -%}
{% block body %}
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 }}
{% endfor %}
2021-03-17 23:08:57 +01:00
<!-- Startpage content loop ende -->
2021-03-18 02:11:05 +01:00
{% endblock %}