vendor/mrpix/shopping-city-theme/src/Resources/views/storefront/layout/header/search.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/layout/header/search.html.twig' %}
  2. {% block layout_header_search_button %}
  3.     {% if feature('v6.5.0.0') %}
  4.         <button type="submit"
  5.                 class="btn header-search-btn"
  6.                 aria-label="{{ "header.searchButton"|trans|striptags }}">
  7.             <span class="header-search-icon">
  8.                 {% sw_icon 'icon_search' style {
  9.                     'pack': 'shopping-city',
  10.                     'color': 'black',
  11.                     'namespace': 'MrpixShoppingCityTheme'
  12.                 } %}
  13.             </span>
  14.         </button>
  15.     {% else %}
  16.         <div class="input-group-append">
  17.             <button type="submit"
  18.                     class="btn header-search-btn"
  19.                     aria-label="{{ "header.searchButton"|trans|striptags }}">
  20.                 <span class="header-search-icon">
  21.                     {% sw_icon 'icon_search' style {
  22.                         'pack': 'shopping-city',
  23.                         'color': 'black',
  24.                         'namespace': 'MrpixShoppingCityTheme'
  25.                     } %}
  26.                 </span>
  27.             </button>
  28.         </div>
  29.     {% endif %}
  30. {% endblock %}