2020-12-22 13:18:51 +01:00
|
|
|
<!doctype html>
|
2021-02-14 20:51:58 +01:00
|
|
|
<html
|
|
|
|
{%- if alt %} lang="{{ alt }}"
|
|
|
|
{%- endif %}>
|
|
|
|
<!--
|
|
|
|
__ ____________________
|
|
|
|
\ \ \_______. .________|
|
|
|
|
\ \ / /| | ________
|
|
|
|
\ \ . / / | | | ____|
|
|
|
|
\ \ / \ / / | | | |__
|
|
|
|
\ \/ . \/ / | | | __|
|
|
|
|
\ / \ / | | | |
|
|
|
|
\/ \/ |_| |_|
|
|
|
|
*WTF Kooperative eG*
|
|
|
|
Werkkooperative der
|
|
|
|
Technikfreundinnen
|
2020-12-22 14:47:58 +01:00
|
|
|
|
2021-02-14 20:51:58 +01:00
|
|
|
-->
|
2020-12-22 14:47:58 +01:00
|
|
|
<head>
|
2021-02-24 23:44:49 +01:00
|
|
|
{#-
|
2021-02-14 20:51:58 +01:00
|
|
|
|
2020-12-22 14:47:58 +01:00
|
|
|
Namensschema der CSS-Klassen nach BEM (Block Element Modifier,
|
|
|
|
http://getbem.com/naming/). Mit der Erweiterung, dass Modifier einzeln
|
|
|
|
mit Bindestrich angegeben werden. Also:
|
|
|
|
|
|
|
|
<li class="navlist__navitem -active">
|
|
|
|
statt
|
|
|
|
<li class="navlist__navitem navlist__navitem--active">
|
|
|
|
|
|
|
|
Das ist weniger redundant und übersichtlicher. Der passende CSS-Selektor
|
|
|
|
dazu ist:
|
|
|
|
|
|
|
|
.navlist__navitem.-active
|
2021-02-24 23:44:49 +01:00
|
|
|
#}
|
2021-02-14 20:51:58 +01:00
|
|
|
<meta charset="utf-8" />
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
2021-02-24 23:44:49 +01:00
|
|
|
<title>{% block title %}Werkkooperative der Technikfreundinnen eG{% endblock %} | WTF eG</title>
|
|
|
|
<meta name="description" content="{% block meta_description %}{% endblock %}">
|
|
|
|
{#- OG Values
|
|
|
|
https://ogp.me/ #}
|
2021-02-24 23:51:01 +01:00
|
|
|
<meta property="og:title" content="{{ self.title() }}">
|
|
|
|
<meta property="og:description" content="{{ self.meta_description() }}">
|
|
|
|
<meta property="og:url" content="{{ this | url(external=true) }}">
|
|
|
|
<meta property="og:image" content="{% block meta_image %}{{ '/images/og_unicorn.png'|asseturl }}{% endblock %}">
|
2021-02-14 20:51:58 +01:00
|
|
|
|
|
|
|
{% if '/css/reset.css'|asseturl is defined -%}
|
|
|
|
<link rel="stylesheet" href="{{ '/css/reset.css'|asseturl }}">
|
|
|
|
{%- endif %}
|
|
|
|
{% if '/css/fonts.css'|asseturl is defined -%}
|
|
|
|
<link rel="stylesheet" href="{{ '/css/fonts.css'|asseturl }}">
|
|
|
|
{%- endif %}
|
|
|
|
<link rel="stylesheet" href="{{ '/css/style.css'|asseturl }}">
|
|
|
|
{% if 'apple-touch-icon.png'|asseturl is defined -%}
|
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href="{{ 'apple-touch-icon.png'|asseturl }}">
|
|
|
|
{%- endif %}
|
|
|
|
{% if 'favicon-32x32.png'|asseturl is defined -%}
|
|
|
|
<link rel="icon" type="image/png" sizes="32x32" href="{{ 'favicon-32x32.png'|asseturl }}">
|
|
|
|
{%- endif %}
|
|
|
|
{% if 'favicon-96x96.png'|asseturl is defined -%}
|
|
|
|
<link rel="icon" type="image/png" sizes="16x16" href="{{ 'favicon-96x96.png'|asseturl }}">
|
|
|
|
{%- endif %}
|
|
|
|
{% if 'manifest.json'|asseturl is defined -%}
|
|
|
|
<link rel="manifest" href="{{ 'manifest.json'|asseturl }}">
|
|
|
|
{%- endif %}
|
2022-08-24 20:05:02 +02:00
|
|
|
{% if '/js/contact_form_toggle.js'|asseturl is defined and this.title == 'Kontakt' -%}
|
2022-06-16 13:02:42 +02:00
|
|
|
<script type="text/javascript" src="{{ '/js/contact_form_toggle.js'|asseturl }}"></script>
|
|
|
|
{%- endif %}
|
2020-12-22 14:47:58 +01:00
|
|
|
</head>
|
2020-12-22 13:18:51 +01:00
|
|
|
<body>
|
2020-12-22 14:47:58 +01:00
|
|
|
<header>
|
2021-02-06 15:13:13 +01:00
|
|
|
{% block header %}{% endblock %}
|
2020-12-22 14:47:58 +01:00
|
|
|
</header>
|
|
|
|
|
|
|
|
<main>
|
|
|
|
{% block body %}{% endblock %}
|
|
|
|
</main>
|
|
|
|
|
|
|
|
<footer>
|
2021-03-14 18:01:33 +01:00
|
|
|
<div class="footer__top_bar_left"></div>
|
|
|
|
<div class="footer__top_bar_mid"></div>
|
|
|
|
<div class="footer__top_bar_right"></div>
|
|
|
|
<div class="footer__wrapper">
|
|
|
|
<ul class="footer__nav">
|
|
|
|
<li class="footer__navitem -first">
|
2021-03-21 12:22:28 +01:00
|
|
|
<p>Folgt uns auf:<br>
|
2021-06-09 22:43:44 +02:00
|
|
|
<a rel="me" href="https://chaos.social/@HackerGeno" title="Mastodon">
|
2021-05-24 02:37:07 +02:00
|
|
|
{%- if '/images/mastodon_logo.svg'|asseturl is defined -%}
|
2021-03-21 12:22:28 +01:00
|
|
|
<img alt="Mastodon Logo" class="footer__social_logo" src="{{ '/images/mastodon_logo.svg'|asseturl }}"/>
|
|
|
|
{%- else -%}
|
|
|
|
Mastodon
|
|
|
|
{%- endif -%}
|
|
|
|
</a>
|
|
|
|
</p>
|
|
|
|
<p>Abonniere unseren Podcast:<br>
|
2021-06-23 22:35:24 +02:00
|
|
|
<a href="https://wtf-eg.de/podcast/" title="Podcast">
|
2021-05-24 02:37:07 +02:00
|
|
|
{%- if '/images/wtf_podcast_logo.svg'|asseturl is defined -%}
|
2021-03-21 12:22:28 +01:00
|
|
|
<img alt="WTF Podcast Logo" class="footer__social_logo" src="{{ '/images/wtf_podcast_logo.svg'|asseturl }}"/>
|
|
|
|
{%- else -%}
|
|
|
|
Podcast
|
|
|
|
{%- endif -%}
|
|
|
|
</a>
|
2021-06-23 22:35:24 +02:00
|
|
|
<a href="https://wtf-eg.de/wtf.xml" title="Podcast Feed">
|
2021-05-24 02:37:07 +02:00
|
|
|
{%- if '/images/rss_feed.svg'|asseturl is defined -%}
|
2021-03-21 12:22:28 +01:00
|
|
|
<img alt="Podcast Feed" class="footer__social_logo" src="{{ '/images/rss_feed.svg'|asseturl }}"/>
|
|
|
|
{%- else -%}
|
|
|
|
Podcast Feed
|
|
|
|
{%- endif -%}
|
|
|
|
</a>
|
|
|
|
</p>
|
2021-03-14 18:01:33 +01:00
|
|
|
</li>
|
|
|
|
<li class="footer__navitem -second">
|
|
|
|
WTF Kooperative eG<br/>
|
2021-03-17 21:34:20 +01:00
|
|
|
Forsmannstr. 14 b<br/>
|
2021-03-14 18:01:33 +01:00
|
|
|
22303 Hamburg<br/>
|
2021-03-18 21:27:12 +01:00
|
|
|
<a class="footer__navlink" href="mailto:office@wtf-eg.de">office@wtf-eg.de</a><br/>
|
2021-03-14 18:01:33 +01:00
|
|
|
<br/>
|
|
|
|
Registergericht: AG Hamburg<br/>
|
|
|
|
Registernummer: GnR 1113<br/>
|
2023-01-04 20:14:31 +01:00
|
|
|
Vorstand: Maria Sasonowa, Lars Vosteen<br/>
|
2022-11-24 13:02:14 +01:00
|
|
|
Aufsichtsratsvorsitz: Alexander Heidenreich
|
2021-03-14 18:01:33 +01:00
|
|
|
</li>
|
|
|
|
<li class="footer__navitem -third">
|
|
|
|
<a class="footer__navlink" href="{{ '/impressum'|url }}">Impressum</a> | <a class="footer__navlink" href="{{ '/datenschutz'|url }}">Datenschutzerklärung</a> <br/>
|
2021-03-17 20:07:13 +01:00
|
|
|
<img class="footer__wtf_logo" src="/images/wtf_logo_white.svg" alt="WTF eG - Logo" height="50%"><br>
|
2023-01-10 22:08:11 +01:00
|
|
|
© 2023 WTF Kooperative eG
|
2021-03-14 18:01:33 +01:00
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
2020-12-22 14:47:58 +01:00
|
|
|
</footer>
|
2021-05-24 02:37:07 +02:00
|
|
|
{%- if '/js/nav_toggle.js'|asseturl is defined -%}
|
|
|
|
<script type="text/javascript" src="{{ '/js/nav_toggle.js'|asseturl }}"></script>
|
|
|
|
{%- endif %}
|
2022-08-24 20:05:02 +02:00
|
|
|
{% if '/js/contact_form_toggle.js'|asseturl is defined and this.title == 'Kontakt' -%}
|
2022-06-16 13:02:42 +02:00
|
|
|
<script type="text/javascript" src="{{ '/js/contact_form.js'|asseturl }}"></script>
|
|
|
|
{%- endif %}
|
2020-12-22 13:18:51 +01:00
|
|
|
</body>
|