{% 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 %}
    {% if blk._flowblock == "flow_text_image_section" %}
      {{ blk }}
    {% endif %}
  {% endfor %}

  <section class="content">
    <div class="content__box">
        <div class="content__inner_box">
            <h2>FAQ</h2>
            {% for blk in this.section.blocks %}
              {% if blk._flowblock == "flow_faq" %}
                {{ blk }}
              {% endif %}
            {% endfor %}
        </div>
    </div>
  </section>

  <section class="content">
    <div class="content__box">
      <div class="content__inner_box">
        <h2>Videos</h2>
        <h3>What the f**ck is WTF eg?</h3>
        <h4>Was sind Genossenschaften und was können wir Cooles damit machen.</h4>
        <p>
          Vortrag von unserem Mitglied <i>Scammo</i> auf der <i>Night of open Knowledge (NooK) 2022</i>
        </p>
        <iframe class="content__video" src="https://media.ccc.de/v/what-the-f--k-is-wtf-eg/oembed" frameborder="0" allowfullscreen></iframe>
        <h3>Wirtschaft neu gedacht - die WTF Kooperative eG</h3>
        <p>
          Vortrag von unserem damaligen Vorstand <i>MrSchizo</i> auf der <i>remote Chaos Experience (RC3) 2021</i>.
        </p>
        <iframe class="content__video" src="https://media.ccc.de/v/rc3-2021-r3s-432-wirtschaft-neu-gedacht-die-wtf-kooperative-eg/oembed" frameborder="0" allowfullscreen></iframe>
      </div>
    </div>
  </section>
{% endblock %}