{% extends get_base_template() %} {# {% block nav_sidebar_widget %} {% include 'default/components/sidebar/navSidebarWidget.html.twig' %} {% endblock %} #} {% block body %}

{{ page.pagetitle|default(page.title) }}

{{ page.content|raw|keywords|lozad }}
{% if(page.slug == "ferienwohnungen")%} {% if lodgingGroups is not empty %} {% for lodgingGroup in lodgingGroups %}

{{ lodgingGroup.name }}

{% if lodgingGroup.lodgings is not empty %} {% for lodging in lodgingGroup.lodgings %} {% include 'default/components/pageLodgingBox.html.twig' %} {% endfor %} {% endif %}
{% endfor %} {% endif %} {% else %} {#{% for i in 0..page.children|length//3 %}#}
{% for child_page in page.children if child_page.status == 1 %} {% include 'default/components/pageBox.html.twig' %} {% endfor %}
{% endif %}
{% endblock %}