2021-02-06 15:13:13 +01:00
|
|
|
{% extends "layout.html" %}
|
|
|
|
{% block header %}
|
|
|
|
<div class="header__top_box">
|
|
|
|
<div class="header__logo_box">
|
|
|
|
<a class="header__homelink" href="{{ '/'|url }}" title="Startseite">
|
2021-02-14 21:30:06 +01:00
|
|
|
{% if '/images/wtf_logo.svg'|asseturl is defined -%}
|
|
|
|
<img class="header__logo" src="{{ '/images/wtf_logo.svg'|asseturl }}" style="height: 7rem;">
|
|
|
|
{%- endif %}
|
2021-02-06 15:13:13 +01:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<nav class="header__secondary_nav">
|
|
|
|
<ul class="secondary_nav__navlist">
|
2021-02-14 21:30:06 +01:00
|
|
|
{% for alt in get_alts(this) %}
|
|
|
|
{%- if this.alt != alt %}
|
2021-02-06 15:13:13 +01:00
|
|
|
<li class="secondary_nav__navitem">
|
2021-02-14 21:30:06 +01:00
|
|
|
<a class="secondary_nav__navlink" href="{{ '.'|url(alt=alt) }}">{{ alt|title|upper }}</a>
|
2021-02-06 15:13:13 +01:00
|
|
|
</li>
|
2021-02-14 21:30:06 +01:00
|
|
|
{% endif -%}
|
|
|
|
{% endfor %}
|
2021-02-06 15:13:13 +01:00
|
|
|
<li class="secondary_nav__navitem">
|
|
|
|
<a class="secondary_nav__navlink" href="https://meta.vebit.xyz">Login</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
</div>
|
|
|
|
<div class="header__bg_box">
|
|
|
|
<nav class="header__primary_nav">
|
|
|
|
<div class="primary_nav__toggle">
|
|
|
|
<svg viewBox="0 0 100 80" width="32" height="32">
|
|
|
|
<rect width="100" height="15"></rect>
|
|
|
|
<rect y="30" width="100" height="15"></rect>
|
|
|
|
<rect y="60" width="100" height="15"></rect>
|
|
|
|
</svg>
|
|
|
|
<p>menu</p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<ul class="primary_nav__navlist">
|
|
|
|
{% for title, mapping in bag("navigation").items() %}
|
|
|
|
<li class="primary_nav__navitem
|
|
|
|
{%- if this._path == mapping.href or mapping.href != '/' and this.is_child_of(mapping.href) %}
|
|
|
|
-active
|
|
|
|
{%- endif -%}
|
|
|
|
{%- if loop.index == 1 %}
|
|
|
|
-first
|
|
|
|
{%- endif -%}
|
|
|
|
">
|
|
|
|
<a class="primary_nav__navlink {% if this._path == mapping.href %}-active{% endif %}" href="{{ mapping.href|url }}">
|
|
|
|
{{ title }}
|
|
|
|
</a>
|
|
|
|
{% if mapping.list_childs %}
|
|
|
|
<ul class="primary_nav__sub_navlist">
|
|
|
|
{% set sub_menu = mapping['items'].items() %}
|
|
|
|
{% for sub_title, href in sub_menu %}
|
|
|
|
<li class="primary_nav__sub_navitem {%- if this._path == href %} -active{%- endif %}">
|
|
|
|
<a class="primary_nav__navlink {% if this._path == href %}-active{% endif %}" href="{{ href|url }}">
|
|
|
|
{{ sub_title }}
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
{% endif %}
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
<!-- background for header box - start -->
|
|
|
|
<div class="bg_box__top_bar_left"></div>
|
|
|
|
<div class="bg_box__top_bar_middle"></div>
|
|
|
|
<div class="bg_box__top_bar_right"></div>
|
|
|
|
<div class="bg_box__unicorns"></div>
|
|
|
|
<div class="bg_box__big_bg"></div>
|
|
|
|
<div class="bg_box__bottom_bar_left"></div>
|
|
|
|
<div class="bg_box__bottom_bar_middle"></div>
|
|
|
|
<div class="bg_box__bottom_bar_right"></div>
|
|
|
|
<div class="bg_box__very_bottom_bar"></div>
|
|
|
|
<!-- background for header box - end -->
|
|
|
|
<section class="header__claim">
|
|
|
|
<!-- TODO: Claims in Lektor editierbar. -->
|
|
|
|
{{ this.claim_heading }}
|
|
|
|
{{ this.claim_content }}
|
|
|
|
</section>
|
|
|
|
<section class="header__sub_claim">
|
|
|
|
<div class="sub_claim__box">
|
|
|
|
{{ this.subclaim_heading }}
|
|
|
|
{{ this.subclaim_content }}
|
|
|
|
</div>
|
|
|
|
<!-- TODO: Zielseite für "MEMBER WERDEN"-Button -->
|
2021-02-06 15:47:39 +01:00
|
|
|
<button class="header__button sub_claim__button">
|
2021-02-06 16:18:30 +01:00
|
|
|
<a class="header__button_link" href={{ '/mitglieder'|url }}>MEMBER WERDEN</a>
|
2021-02-06 15:47:39 +01:00
|
|
|
</button>
|
2021-02-06 15:13:13 +01:00
|
|
|
</section>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|