Brain
d8884ba9ea
All checks were successful
continuous-integration/drone/pr Build is passing
Closes #190
101 lines
3.0 KiB
HTML
101 lines
3.0 KiB
HTML
{% extends "header_slim.html" %}
|
|
{% from "macros/services_cards.html" import render_services_card %}
|
|
{%- 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 %}
|
|
<section class="content">
|
|
<div class="content__box">
|
|
{% if this.intro %}
|
|
<div class="content__box">
|
|
<div class="content__inner_box">
|
|
{{ this.intro }}
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
|
|
<div class="services_box">
|
|
<h1>{{ this.title }}</h1>
|
|
<div class="services_card_box">
|
|
{% for card in this.section.blocks %}
|
|
{% if card._flowblock == "flow_services_cards" %}
|
|
{{ render_services_card(card, loop.index) }}
|
|
{% endif %}
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="portfolio_box">
|
|
<h1>Portfolio</h1>
|
|
<div class="services_card_box">
|
|
{% for card in this.section.blocks %}
|
|
{% if card._flowblock == "flow_portfolio_cards" %}
|
|
{{ render_services_card(card, loop.index) }}
|
|
{% endif %}
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<div class="content__box">
|
|
<div class="content__inner_box">
|
|
<h1 class="big_heading">{{ this.kompetenzen_heading }}</h1>
|
|
</div>
|
|
</div>
|
|
<section class="content">
|
|
<div class="content__box">
|
|
<div class="bubble_grid">
|
|
{% for icon_bubble in this.section.blocks %}
|
|
{% if icon_bubble._flowblock == "flow_icon_bubbles" %}
|
|
{{ icon_bubble }}
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
<div class="bubble_grid__card">
|
|
{{ this.kompetenzen_body }}
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<div class="contact__box" style="display: none">
|
|
<h1>{{ this.contact_form_heading }}</h1>
|
|
|
|
<div class="contact_info__box">
|
|
<p>
|
|
<strong>WTF Kooperative eG</strong><br>
|
|
Forsmannstr. 14 b<br>
|
|
Hinterhaus, 3. OG<br>
|
|
22303 Hamburg
|
|
</p>
|
|
<p>
|
|
<strong>E-Mail:</strong><br>
|
|
office@wtf-eg.de
|
|
</p>
|
|
<p>
|
|
<strong>GnuPG Key:</strong><br>
|
|
<a href="/gnupg/office.asc" title="CBBBF914ADDC76785A3F1638D1E47FA5FC0F6DFD">office.asc</a>
|
|
</p>
|
|
</div>
|
|
<section class="contact_form_box">
|
|
<div class="content__box">
|
|
<div class="content__inner_box -width_constraint content__contact_form_wrapper">
|
|
<h2 id="contact">{{ this.contact_form_subheading }}</h2>
|
|
<p class="contact_form__note">
|
|
{{ this.contact_form_info }}
|
|
</p>
|
|
<div id="zammad-feedback-form"></div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
{% endblock %}
|