forked from ag_kommunikation/webseite
Statt Homepage von generischem Multisection-Template auf Homepage-Template umgestellt.
This commit is contained in:
parent
3f8a3a70bd
commit
30ad57f4e0
@ -1,4 +1,21 @@
|
|||||||
_model: multisection
|
_model: homepage
|
||||||
---
|
---
|
||||||
title: Multisection
|
title: Multisection
|
||||||
---
|
---
|
||||||
|
claim_heading:
|
||||||
|
|
||||||
|
## <span>Werde <em>Teilchen­beschleu­nigerIn</em></span><br><span>in der chaosnahen Genossenschaft.</span>
|
||||||
|
---
|
||||||
|
claim_content:
|
||||||
|
|
||||||
|
Booste Projekte mit Unterstütung von 150 GenossInnen<br>Genossen­schaftlich & solidarisch.
|
||||||
|
---
|
||||||
|
subclaim_heading:
|
||||||
|
|
||||||
|
## Genossenschaft zur Erschließung neuer<br />Betätigungsformen in der Informationstechnologie.
|
||||||
|
---
|
||||||
|
subclaim_content:
|
||||||
|
|
||||||
|
Wir halten Mitglieder und Interessierte durch regelmäßige Rundmails, Beiträge im Wiki und unseren Podcast auf dem Laufenden.<br>
|
||||||
|
Unseren Podcast findest du auf [vebit.xyz/podcast](https://vebit.xyz/pocast).
|
||||||
|
---
|
26
models/homepage.ini
Normal file
26
models/homepage.ini
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
[model]
|
||||||
|
name = Homepage
|
||||||
|
label = Homepage
|
||||||
|
|
||||||
|
[fields.title]
|
||||||
|
label = Title
|
||||||
|
type = string
|
||||||
|
|
||||||
|
[fields.claim_heading]
|
||||||
|
label = Claim Heading
|
||||||
|
type = markdown
|
||||||
|
|
||||||
|
[fields.claim_content]
|
||||||
|
label = Claim Content
|
||||||
|
type = markdown
|
||||||
|
|
||||||
|
[fields.subclaim_heading]
|
||||||
|
label = Subclaim Heading
|
||||||
|
type = markdown
|
||||||
|
|
||||||
|
[fields.subclaim_content]
|
||||||
|
label = Subclaim Content
|
||||||
|
type = markdown
|
||||||
|
|
||||||
|
[children]
|
||||||
|
order_by = sort_key
|
25
templates/homepage.html
Normal file
25
templates/homepage.html
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
{% extends "layout.html" %}
|
||||||
|
{% from "macros/multisection.html" import render_section %}
|
||||||
|
{% block body %}
|
||||||
|
<div class="content__box">
|
||||||
|
<div class="content__inner_box">
|
||||||
|
<h1>{{ this.title }}</h1>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% for child in this.children %}
|
||||||
|
{% if child._model == 'section' %}
|
||||||
|
<section class="content {{ loop.cycle('-odd', '-even') }} -columns">
|
||||||
|
{% if child.title %}
|
||||||
|
<div class="content__box">
|
||||||
|
<div class="content__inner_box">
|
||||||
|
<h2>{{ child.title }}</h2><hr>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
<div class="content__box -columns">
|
||||||
|
{{ render_section(child) }}
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
{% endif %}
|
||||||
|
{% endfor %}
|
||||||
|
{% endblock %}
|
@ -102,25 +102,13 @@
|
|||||||
<!-- background for header box - end -->
|
<!-- background for header box - end -->
|
||||||
<section class="header__claim">
|
<section class="header__claim">
|
||||||
<!-- TODO: Claims in Lektor editierbar. -->
|
<!-- TODO: Claims in Lektor editierbar. -->
|
||||||
<h2>
|
{{ this.claim_heading }}
|
||||||
<span>Werde <em>Teilchen­beschleu­nigerIn</em></span><br>
|
{{ this.claim_content }}
|
||||||
<span>in der chaosnahen Genossenschaft.</span>
|
|
||||||
</h2>
|
|
||||||
<p>
|
|
||||||
Booste Projekte mit Unterstütung von 150 GenossInnen<br>
|
|
||||||
Genossen­schaftlich & solidarisch.
|
|
||||||
</p>
|
|
||||||
</section>
|
</section>
|
||||||
<section class="header__sub_claim">
|
<section class="header__sub_claim">
|
||||||
<div class="sub_claim__box">
|
<div class="sub_claim__box">
|
||||||
<h2>
|
{{ this.subclaim_heading }}
|
||||||
Genossenschaft zur Erschließung neuer<br>
|
{{ this.subclaim_content }}
|
||||||
Betätigungs­formen in der Informations­technologie.
|
|
||||||
</h2>
|
|
||||||
<p>
|
|
||||||
Wir halten Mitglieder und Interessierte durch regelmäßige Rundmails, Beiträge im Wiki und unseren Podcast auf dem Laufenden.<br>
|
|
||||||
Unseren Podcast findest du auf <a href="https://vebit.xyz/pocast">vebit.xyz/podcast</a>.
|
|
||||||
</p>
|
|
||||||
</div>
|
</div>
|
||||||
<!-- TODO: Zielseite für "MEMBER WERDEN"-Button -->
|
<!-- TODO: Zielseite für "MEMBER WERDEN"-Button -->
|
||||||
<button class="header__button sub_claim__button">MEMBER WERDEN</button>
|
<button class="header__button sub_claim__button">MEMBER WERDEN</button>
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{% macro render_section(section) %}
|
{% macro render_section(section) %}
|
||||||
<div class="content__wrapper -columns">
|
<div class="content__inner_box">
|
||||||
{{ section.body }}
|
{{ section.body }}
|
||||||
</div>
|
</div>
|
||||||
{% endmacro %}
|
{% endmacro %}
|
||||||
|
@ -5,10 +5,8 @@
|
|||||||
{% if child._model == 'section' %}
|
{% if child._model == 'section' %}
|
||||||
<section class="content {{ loop.cycle('-odd', '-even') }} -columns">
|
<section class="content {{ loop.cycle('-odd', '-even') }} -columns">
|
||||||
<div class="content__box -columns">
|
<div class="content__box -columns">
|
||||||
<div class="content__inner_box">
|
|
||||||
{{ render_section(child) }}
|
{{ render_section(child) }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</section>
|
</section>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
Loading…
Reference in New Issue
Block a user