- {% 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 %}
-
+{% 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 %}
+
+ {{ page.pagetitle|default(page.title) }}
+
+ {#{% 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 %}
- {% endfor %}
- {% endif %}