muli
0eeeac9ce0
Enthält Fix dafür, dass ohne JS nur ein Teil des Kontaktformulars ausgeblendet wird, was das Layout zerschießt.
26 lines
602 B
HTML
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 %}
|