- {% if editmode %}
- <div class="ms-auto container-narrow">
-     {% embed 'includes/editmode-settings.html.twig' %}
-         {% block additionalSettings %}
-             {{ pimcore_checkbox('narrow', {
-                 label: 'Narrow'
-             }) }}
-         {% endblock %}
-     {% endembed %}
-     {{ include('includes/title-blocks/title-block.html.twig') }}
-     {% set block = pimcore_block('block', {limit: 8}) %}
-     {% for i in block.iterator %}
-         {{ pimcore_image('sliderImage', {width: 300}) }} <br>
-         {{ pimcore_wysiwyg('wysiwyg') }}
-     {% endfor %}
- </div>
- {% else %}
- <section class="content-block {{ pimcore_checkbox('narrow').checked ? 'container-narrow' : 'container-small' }} {{ not pimcore_input('anchorTitle').isEmpty() ? 'js-anchor-nav__item' }}"
-     {% if not pimcore_input('anchorTitle').isEmpty() %} data-anchor-nav-title="{{ pimcore_input('anchorTitle').getData() }}" {% endif %}
- >
-     {{ include('includes/title-blocks/title-block.html.twig') }}
-     <div class="row gy-2">
-         {% for i in pimcore_iterate_block(pimcore_block('block', {limit: 10})) %}
-             <div class="col-md-6">
-                 <article class="card-teaser__content mb-3">
-                     <div class="card-teaser__image">
-                         {{ pimcore_image('sliderImage').getThumbnail('team-teaser').getHtml({
-                             imgAttributes: {
-                                 class: 'js-lazy-img'
-                             },
-                             'lowQualityPlaceholder': true,
-                         })|raw }}
-                     </div>
-                     {% if not pimcore_wysiwyg('wysiwyg').isEmpty %}
-                         <div class="card-teaser__text">
-                             {{ pimcore_wysiwyg('wysiwyg').getData()|raw }}
-                         </div>
-                     {% endif %}
-                 </article>
-             </div>
-         {% endfor %}
-     </div>
- </section>
- {% endif %}