app/Plugin/TabaCMS2/Resource/template/default/widget_search.twig line 1

Open in your IDE?
  1. {#
  2. Copyright (C) SPREAD WORKS Inc. All Rights Reserved.
  3. For the full copyright and license information, please view the LICENSE
  4. file that was distributed with this source code.
  5. #}
  6. <div class="tabacms_widget">
  7.     <h4>検索</h4>
  8.     <div class="tabacms_search">
  9.         <form id='tabacms_search_form' method="get" action="{{ type is defined ? url(type.listRoutingName) }}">
  10.             {{ form_widget(post_search_form.category_id,{'attr':{'class':'form-control'}}) }}
  11.             <div class="input-group">
  12.                 {{ form_widget(post_search_form.keyword) }}
  13.                 <div class="input-group-btn">
  14.                     {{ form_widget(post_search_form.search,{'attr':{'class':'btn btn-secondary'}}) }}
  15.                 </div>
  16.             </div>
  17.         </form>
  18.     </div>
  19. </div>