custom/plugins/ProcWegmannTheme/src/Resources/views/storefront/block/cms-block-50-50-grid-category.html.twig line 1

Open in your IDE?
  1. {% block proclane_cms_block_50_50_grid_category %}
  2.   {# Element => image #}
  3.   {% block proclane_cms_block_50_50_grid_category_slot_left %}
  4.     <div class="cms-block-50-50-image">
  5.       {% set element = block.slots.getSlot('left') %}
  6.       {% sw_include '@Storefront/storefront/element/cms-element-' ~ element.type ~'.html.twig' %}
  7.     </div>
  8.   {% endblock %}
  9.   <div class="cms-block-50-50-right-column">
  10.     {#     Element => text #}
  11.     {#    {% block proclane_cms_block_50_50_grid_category_slot_right_upper %} #}
  12.     {#      <div class="cms-block-50-50-text__header"> #}
  13.     {#        {% set element = block.slots.getSlot('rightUpper') %} #}
  14.     {#        {% sw_include '@Storefront/storefront/element/cms-element-' ~ element.type ~'.html.twig' with { #}
  15.     {#          'element': element #}
  16.     {#        } %} #}
  17.     {#      </div> #}
  18.     {#    {% endblock %} #}
  19.     <div class="cms-block-50-50-text__header">
  20.       <h1>{{ page.header.navigation.active.name }}</h1>
  21.     </div>
  22.     {# Element => proclane-subcategories-list #}
  23.     {% block proclane_cms_block_50_50_grid_category_slot_right_mid %}
  24.       <div class="cms-block-50-50-text__content">
  25.         {% set element = block.slots.getSlot('rightMid') %}
  26.         {% sw_include '@Storefront/storefront/element/cms-element-' ~ element.type ~'.html.twig' with {
  27.           'element': element
  28.         } %}
  29.       </div>
  30.     {% endblock %}
  31.     {# Element => text #}
  32.     {% block proclane_cms_block_50_50_grid_category_slot_right_lower %}
  33.       <div class="cms-block-50-50-text__button">
  34.         {% set element = block.slots.getSlot('rightLower') %}
  35.         {% sw_include '@Storefront/storefront/element/cms-element-' ~ element.type ~'.html.twig' with {
  36.           'element': element
  37.         } %}
  38.       </div>
  39.     {% endblock %}
  40.   </div>
  41. {% endblock %}