webseite/templates/homepage.html

17 lines
427 B
HTML
Raw 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 %}
2023-05-09 16:23:57 +02:00
{% for blk in this.section.blocks %}
{{ blk }}
{% endfor %}
2021-03-18 02:11:05 +01:00
{% endblock %}