templates/_includes/content-blocks/panel-booking.html.twig line 1

Open in your IDE?
  1.   {% if editmode %}
  2.       {{ include('_includes/editables_tooltipps.html.twig') }}
  3.   {% endif %}
  4.   
  5.   {% set vSpace = '' %}
  6.   {% if pimcore_select("set-vspace").getData != '' %}
  7.       {% set vSpace = 'style="margin-top: ' ~ pimcore_select("set-vspace").getData ~ '"' %}
  8.   {% endif %}
  9.   
  10.   {% if pimcore_checkbox("set-as-section").isChecked %}
  11.   <section class="section-padding {{ pimcore_select('set-bg-color').getData ? pimcore_select('set-bg-color').getData : '' }}">
  12.   {% endif %}
  13.     {% if pimcore_select("panel-container-status").getData != '' %}
  14.     <div class="{{ pimcore_select("panel-container-status").getData == 'container-fluid' ? 'container-fluid' : 'container' }}" {{ vSpace | raw }}>
  15.     {% endif %}    
  16.       <div class="row">
  17.         <div class="col-12">
  18.           
  19.           <iframe class="direct-booking-frame" src="https://romy-westermann.lodgify.com/de/unterkuenfte/" border="0">
  20.           </iframe>
  21.           
  22.         </div>
  23.       </div>  
  24.     </div>
  25.   {% if pimcore_checkbox("set-as-section").isChecked %}
  26.   </section>
  27.   {% endif %}