- {% extends "layout/default.html.twig" %}
- {% block content %}
-     <main id="main-content" role="main" class="{{ not editmode ? 'main-content' }} content-block js-content-visibility content-visibility--auto js-smoothscroll js-affix__container">
-         {{ include('navigation/breadcrumb.html.twig') }}
-         {% if editmode %}
-             {% embed('includes/editmode-settings.html.twig') %}
-                 {% block settings %}
-                     <div class="row">
-                         <div class="col-12">
-                             {{ pimcore_relations('product-categories', {
-                                 title: 'Use ProductCategory-Objects or -Snippets',
-                                 types: ['document', 'object'],
-                                 subtypes: {
-                                     'document': ['snippet'],
-                                     'object': ['object'],
-                                 },
-                                 'classes': ['ProductCategory'],
-                             }) }}
-                         </div>
-                     </div>
-                 {% endblock %}
-             {% endembed %}
-         {% endif %}
-         <section class="container">
-             <div class="row">
-                 <div class="col-md-8">
-                     {{ include('includes/title-blocks/title-block.html.twig', {
-                         titleTag: 'h1',
-                         introStyle: 'description-text'
-                     }) }}
-                     </div>
-                 </div>
-         </section>
-         <section class="product-category-teaser-area container content-block">
-             <div class="row gy-2">
-                 {% for categoryTeaser in pimcore_relations('product-categories') %}
-                     <div class="col-xl-3 col-md-4 col-6">
-                         {% if categoryTeaser is instanceof('\\Pimcore\\Model\\DataObject\\ProductCategory') %}
-                             {{ include('includes/teaser/product-category-teaser.html.twig') }}
-                         {% else %}
-                             {{ pimcore_inc(categoryTeaser) }}
-                         {% endif %}
-                     </div>
-                 {% endfor %}
-             </div>
-         </section>
-         {{ include('includes/areablock.html.twig') }}
-     </main>
- {% endblock %}