webseite/templates/homepage.html
2023-05-09 16:23:57 +02:00

17 lines
427 B
HTML

{% extends "header_with_logo.html" %}
{%- 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 %}
{% for blk in this.section.blocks %}
{{ blk }}
{% endfor %}
{% endblock %}