diff --git a/content/contents.lr b/content/contents.lr
index aea5590..0170e2c 100644
--- a/content/contents.lr
+++ b/content/contents.lr
@@ -110,3 +110,11 @@ hinweis_url: /mitmachen/
sections:
---
render_tourdaten: yes
+---
+icons_header_2: Worum geht es bei den Waffeln
+---
+icons_text_2:
+
+Das C3WOC macht nicht einfach Waffeln, die man für Geld kaufen kann.
+
+Sondern es geht um viel mehr!
diff --git a/models/start.ini b/models/start.ini
index 67aa57b..2f8e714 100644
--- a/models/start.ini
+++ b/models/start.ini
@@ -86,6 +86,15 @@ label = Render Termine?
default = false
type = boolean
+[fields.icons_header_2]
+label = 4. Abschnitt: Überschrift (nach tourdaten)
+type = string
+
+[fields.icons_text_2]
+label = 4. Abschnitt: Text (nach tourdaten)
+type = markdown
+
+
[fields.icons_1_1]
label = 1. Icon: Font Awesome
type = string
diff --git a/templates/start.html b/templates/start.html
index a8c70bb..78b7153 100644
--- a/templates/start.html
+++ b/templates/start.html
@@ -65,34 +65,39 @@
if this.render_tourdaten %}
-
-
- Datum |
- Veranstaltung |
- Ort |
-
-
- {%
+
+
+
+ Datum |
+ Veranstaltung |
+ Ort |
+
+
+ {%
set pages = site.query('/').include_undiscoverable(true).all() %}{%
for page in pages %}{%
if page._model == 'waffeln' and page._path == '/waffeln.ics' %}{%
for blk in page.termine.blocks|sort(attribute='start', reverse = False) %}{%
if blk.start.strftime('%Y%m%d%H%M') > none|datetimeformat('yyyyMMddhhmm') %}
-
+
{%
- if blk.start.strftime('%d.%m') == blk.ende.strftime('%d.%m') %}{{ blk.start.strftime('%d.%m.%y %H') }} - {{ blk.ende.strftime('%H') }} Uhr{%
- else %}{{ blk.start.strftime('%d.%m') }} - {{ blk.ende.strftime('%d.%m.%Y') }}{%
- endif %} |
- {{ blk.event }} |
- {{ blk.ort }} |
-
{%
+ if blk.start.strftime('%d.%m') == blk.ende.strftime('%d.%m') %}{{ blk.start.strftime('%d.%m.%y %H') }} - {{ blk.ende.strftime('%H') }} Uhr{%
+ else %}{{ blk.start.strftime('%d.%m') }} - {{ blk.ende.strftime('%d.%m.%Y') }}{%
+ endif %}
+ {{ blk.event }} |
+ {{ blk.ort }} |
+ {%
endif %}{%
endfor %}
-
-
+
+
{%
endif %}{%
endfor %}
+
+ {{ this.icons_header_2 }}
+ {{ this.icons_text_2 }}
+
{% endif %}