{% extends 'document.html.twig' %}
{% block main_content %}
{% if editmode %}
<div style="height:100px;"></div>
{% endif %}
{% set contentBlock1 = pimcore_block('contentblock1') %}
{% for i in pimcore_block('contentblock1').iterator %}
{% if editmode %}
{{ pimcore_select('blocktype', {
"store": [
["panel-12-with-headlines", "1-spaltig mit Headlines"],
["panel-12", "1-spaltig volle Breite"],
["panel-6-6", "2-spaltig, 50/50 Aufteilung"],
["panel-6-6-slidein", "2-spaltig animierte Boxen"],
["panel-6-6-circles", "2-spaltig runder Hintergrund"],
["panel-4-8", "2-spaltig, 30/70 Aufteilung"],
["panel-3-3-3-3", "4-spaltig"],
["panel-slider-gallery", "Bildergalerie"],
["panel-booking", "Buchungstool toubiz.de"],
["horizontal-line", "Horizontale Linie"]
],
"defaultValue": "panel-12",
"width": 300,
"reload": true
}) }}
{% endif %}
{% if not pimcore_select('blocktype').isEmpty() %}
{{ include('_includes/content-blocks/' ~ pimcore_select('blocktype').getData() ~ '.html.twig') | replace({'7SCHWABEN': '<strong class="condensed"><span class="red">7</span>SCHWABEN</strong>'}) | raw }}
{% endif %}
{% endfor %}
{{ include('_includes/apartmentsSlider.html.twig') }}
{% endblock %}