custom/plugins/SsikLibertyTheme/src/Resources/views/storefront/layout/header/header.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/layout/header/header.html.twig' %}
  2. {% set contactPhone = 'ssik.topbar.contact.phone' %}
  3. {% set contactText = 'ssik.topbar.contact.text' %}
  4. {% set confighiddenTopBar = config('SsikLibertyTheme.config.hiddenTopBar') %}
  5. {% set isInfoColShow = config('SsikLibertyTheme.config.isInfoColShow') %}
  6. {% block layout_top_bar %}
  7.     {% if confighiddenTopBar is empty %}
  8.         <div class="ssik-top-bar-container">
  9.             <div class="container">
  10.                 {{parent()}}
  11.             </div>
  12.         </div>
  13.     {% endif %}
  14. {% endblock %}
  15. {% block layout_header_navigation %}
  16.     <div class="container ssik-header-container">
  17.         {{parent()}}
  18.     </div>
  19. {% endblock %}
  20. {% block layout_header_logo %}
  21.     {{parent()}}
  22.     {% if isInfoColShow is empty %}
  23.         {% sw_include '@Storefront/storefront/ssik/header-info-col.html.twig' with {
  24.             asDropdown: true
  25.         } %}
  26.     {% endif %}
  27. {% endblock %}