app/template/default/Block/search_product.twig line 1

Open in your IDE?
  1. {#
  2. This file is part of EC-CUBE
  3. Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
  4. http://www.ec-cube.co.jp/
  5. For the full copyright and license information, please view the LICENSE
  6. file that was distributed with this source code.
  7. #}
  8. {% form_theme form 'Form/form_div_layout.twig' %}
  9. <div class="ec-headerSearch">
  10.     <form
  11.         method="get" class="searchform" action="{{ path('product_list') }}">
  12.         {# <div class="ec-headerSearch__category">
  13.                     <div class="ec-select ec-select_search">
  14.                         {{ form_widget(form.category_id, {'id': null, 'attr': {'class': 'category_id'}}) }}
  15.                     </div>
  16.                 </div> #}
  17.         <div class="header-search">
  18.             <button class="header-search-button" type="submit">
  19.                 <span class="ec-icon">
  20.                     <img src="{{ asset('assets/img/common/icon-search.svg', 'user_data') }}" alt="">
  21.                 </span>
  22.             </button>
  23.             <div class="ec-input">
  24.                 {{ form_widget(form.name, {'id': null, 'attr': {'class': 'search-name', 'placeholder' : 'キーワード検索' }}
  25.                 ) }}
  26.             </div>
  27.         </div>
  28.     </form>
  29. </div>