{% extends 'partials/base.html.twig' %} {% block content %}

{% include 'partials/logo.html.twig' with {style: 'height: 3rem; padding-bottom: 0.5rem'} %} Herzlich Willkommen

{% include 'partials/osm.html.twig' %}
Kontakt {% include 'partials/socialmedia.html.twig' %}

{{ page.content }}
{% set news_page = pages.find('/news') %} {% if news_page and news_page.collection() and news_page.collection()|first %} {% set text_class = 'col-12' %} {% set news_latest = news_page.collection()|first %}

{{ news_latest.title }}

{% if news_latest.media.images %} {% set text_class = 'col-12 col-md-9' %}
Titelbild der letzten News.
{% endif %}
{{ news_latest.summary }}
{% endif %} {% set collection = page.collection() %} {% for child in collection %}
{% if child.template == 'info' %}
{% set text_class = 'col-12' %} {% if child.media.images|first %} {% set text_class = 'col-12 col-md-9' %}
{% endif %}
{{ child.content }}
{% else %} {{ child.title }}

{{ child.summary }}

{% endif %} {% endfor %} {% endblock %}