templates/_includes/content-blocks/panel-12-with-headlines.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=" {{ 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="page-header scroll-animated" data-animation="slideInUp">
  17.         <h3>{{ pimcore_input('panel_section_header3') }}</h3> 
  18.         <p class="grey">{{ pimcore_input('home_section1_text1') }}</p>
  19.       </div>          
  20.       <div class="page-introduction scroll-animated" data-animation="slideInUp">
  21.         {{ pimcore_wysiwyg('panel_section_text2') }}
  22.       </div>
  23.     </div>
  24.   {% if pimcore_checkbox("set-as-section").isChecked %}
  25.   </section>
  26.   {% endif %}