app/template/BlackCherry/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. <div class="ec-headerSearch">
  9.   <div class="ec-headerSearch_area">
  10.       <form method="get" class="searchform" action="{{ path('product_list') }}">
  11.           <div class="ec-headerSearch_item"> 
  12.               <dl class="ec-headerSearch_item__date">
  13.                   <dt>{{ '入荷日:'|trans }}</dt>
  14.                   <dd>
  15.                       <input type="date" name="date" value="{{ app.request.get('date') }}">
  16.                   </dd>
  17.               </dl>
  18.               <dl class="ec-headerSearch_item__maler">
  19.                   <dt>{{ 'メーカー:'|trans }}</dt>
  20.                   <dd>
  21.                       {{ form_widget(form.maker_id, {'attr': {'class': 'search-maker'}}) }}
  22.                   </dd>
  23.               </dl>
  24.               <dl class="ec-headerSearch_item__freeword">
  25.                   <dt>{{ 'フリーワード:'|trans }}</dt>
  26.                   <dd>
  27.                       {{ form_widget(form.keyword, {'attr': {'class': 'search-name', 'placeholder' : 'キーワードを入力' }} ) }}
  28.                   </dd>
  29.               </dl>
  30.               <div class="ec-headerSearch__btn">
  31.                   <button type="submit">検索</button>
  32.               </div>
  33.           </div>
  34.       </form>
  35.   </div>
  36. </div>