templates/_includes/content-blocks/panel-12.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.           {{ pimcore_wysiwyg('panel-12-wysiwyg1') }}
  19.         </div>
  20.       </div>  
  21.     </div>
  22.   {% if pimcore_checkbox("set-as-section").isChecked %}
  23.   </section>
  24.   {% endif %}