webseite/templates/homepage.html
muli 0eeeac9ce0 feat: Kontaktformular von Homepage auf "Was wir tun" verlegt. WIP: FAQ auf homepage.
Enthält Fix dafür, dass ohne JS nur ein Teil des Kontaktformulars ausgeblendet wird, was das Layout zerschießt.
2023-08-08 21:10:23 +02:00

26 lines
602 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 %}
<div class="content__box">
<div class="content__box">
<div class="content__inner_box">
{{ this.faq }}
</div>
</div>
</div>
{% endblock %}