forked from ag_kommunikation/webseite
925b7cdc83
To be converted to proper template.
65 lines
3.1 KiB
HTML
65 lines
3.1 KiB
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 %}
|
|
|
|
<!-- 50/50 Layout - start -->
|
|
<section class="content">
|
|
<div class="content__box -heading">
|
|
<div class="content__inner_box">
|
|
<h2>3, 2, 1 - Die WTF eG hebt ab!</h2>
|
|
</div>
|
|
</div>
|
|
<div class="content__half_box">
|
|
<div class="content__inner_half_box">
|
|
<div class="content__teaser">
|
|
<p>Der Start ist geschafft, die WTF Kooperative eG ist gegründet und seit Anfang des Jahres ordentlich beim Registergericht Hamburg eingetragen.</p>
|
|
</div>
|
|
<div class="content__body">
|
|
<p>Die Idee der„Hackergenossenschaft“ wurde zum ersten Mal auf dem 34C3 vorgestellt. Vom Start weg haben sich über 160 Personen gefunden und dafür gearbeitet, dass die Gründung gelingt.</p>
|
|
<p>Ein Unternehmen, dass jedem einzelnen von uns gehört, in dem jeder von uns eine Stimme und das Recht auf Mitsprache hat. Das alles ist nun machbar - in unserer WTF Koopertive eG.</p>
|
|
</div>
|
|
<div class="content__footer">
|
|
<p>folge uns <a href="https://chaos.social/@HackerGeno"><img class="content__inline_image" src="images/mastodon_logo.svg" alt="Mastodon Logo" height="16"></a></p>
|
|
</div>
|
|
</div>
|
|
{% if this.attachments.images %}
|
|
<div class="content__inner_half_box">
|
|
{% for image in this.attachments.images %}
|
|
<!--
|
|
Wir laden Bilder mit hoher Auflösung hoch. Lektor baut "Thumbnails" mit halber
|
|
Auflösung. Per srcset bieten wir beides an und der Browser sucht das Richtige
|
|
raus.
|
|
|
|
Versteht der Browser srcset nicht, greift src.
|
|
|
|
Wichtig: Keine Angaben für width und height berechnen, dann geht beim Skalieren das Seitenverhältnis kaputt.
|
|
-->
|
|
<img class="content__half_box_image" src="{{ image|url }}" width="{{ image.width / 2 }}" alt="Startendes Space Shuttle" srcset="{{ image.thumbnail(image.width / 2)|url }} 1x, {{ image|url }} 2x">
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
</section>
|
|
<!-- 50/50 Layout - end -->
|
|
|
|
{% for blk in this.section.blocks %}
|
|
<section class="content {{ loop.cycle('-odd', '-even') }}">
|
|
{% if blk.title %}
|
|
<div class="content__box">
|
|
<div class="content__inner_box">
|
|
<h2>{{ blk.title }}</h2><hr>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
{{ blk }}
|
|
</section>
|
|
{% endfor %}
|
|
{% endblock %}
|