custom/plugins/S360Experts/src/Resources/views/storefront/section/cms-section-sidebar.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/section/cms-section-sidebar.html.twig' %}
  2. {% block section_sidebar_content %}
  3.     {% set config = config('S360Experts.config') %}
  4.     {% set showExpert = false %}
  5.     {% if page.hasExtension('s360_experts') and config.showInSidebar is same as(true) and sidebarBlocks %}
  6.         {% set showExpert = true %}
  7.     {% endif %}
  8.     <div class="cms-section-sidebar-sidebar-content col-lg-4 col-xl-3">
  9.         {% if showExpert and config.showInSidebar and config.whereInSidebar is same as('insidebar_above')  %}
  10.             {% sw_include '@Storefront/solution360/s360experts/category-sidebar.html.twig' with { 'position': 'top' } %}
  11.         {% endif %}
  12.         {% for block in sidebarBlocks %}
  13.             {% block section_sidebar_content_block %}
  14.                 {{ parent() }}
  15.             {% endblock %}
  16.         {% endfor %}
  17.         {% if showExpert and config.showInSidebar and config.whereInSidebar is same as('insidebar_below') %}
  18.             {% sw_include '@Storefront/solution360/s360experts/category-sidebar.html.twig'  with { 'position': 'bottom' } %}
  19.         {% endif %}
  20.     </div>
  21. {% endblock %}