custom/static-plugins/CytexTheme/src/Resources/views/storefront/layout/header/top-header.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Wtheme/storefront/layout/header/top-header.html.twig' %}
  2. {% block top_header %}
  3.     {% block toppest_block %}{% endblock %}
  4.     <div class="header-main-top-content">
  5.         <div class="row">
  6.             <div class="col d-none d-sm-flex">
  7.                 <a href="{{ "theme.contact-url"|trans }}">
  8.                     {% set widget = {'icon': theme_config('widget-header-icon-1'), 'content': theme_config('widget-header-text-1'), 'module': theme_config('widget-header-module-1'), i:1} %}
  9.                     {% sw_include '@Wtheme/storefront/component/widgets/wexo-widget.html.twig' with widget %}
  10.                 </a>
  11.                 <a href="{{ "theme.faq-url"|trans }}">
  12.                     {% set widget = {'icon': theme_config('widget-header-icon-2'), 'content': theme_config('widget-header-text-2'), 'module': theme_config('widget-header-module-2'),i:2} %}
  13.                     {% sw_include '@Wtheme/storefront/component/widgets/wexo-widget.html.twig' with widget %}
  14.                 </a>
  15.                 <a href="{{ "theme.about-url"|trans }}">
  16.                     {% set widget = {'icon': theme_config('widget-header-icon-3'), 'content': theme_config('widget-header-text-3'), 'module': theme_config('widget-header-module-3'),i:3} %}
  17.                     {% sw_include '@Wtheme/storefront/component/widgets/wexo-widget.html.twig' with widget %}
  18.                 </a>
  19.             </div>
  20.             {% set SwpGoogleTranslateSixConfig = config('SwpGoogleTranslateSix.config') %}
  21.             {% if SwpGoogleTranslateSixConfig.channelActive is same as (true)
  22.                 and SwpGoogleTranslateSixConfig.languages|length >= 1 %}
  23.                 {% block layout_header_top_bar_swp_google_translate_six %}
  24.                     {% sw_include '@Storefront/storefront/component/swp_google_translate_six/swp_google_translate_six.html.twig' ignore missing %}
  25.                 {% endblock %}
  26.             {% endif %}
  27.         </div>
  28.     </div>
  29. {% endblock %}