app/template/default/Block/maker.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. {% set Makers = repository('Plugin\\Maker42\\Entity\\Maker').findBy({}, {sort_no: 'desc' }, 5) %}
  9. <div class="maker_list">
  10.     <dl>
  11.         <dt>メーカー一覧</dt>
  12.         <dd>
  13.             <ul class="js-leftmenu-maker-list">
  14.                 {% for Maker in Makers %}
  15.                     <li><a class="maker-list-link" href="{{ url('product_list') }}?maker_id={{ Maker.id }}">{{ Maker.name }}</a></li>
  16.                 {% endfor %}
  17.             </ul>
  18.         </dd>
  19.     </dl>
  20.     <p><a class="js-makerlist-link" href="{{ url('maker') }}">一覧を見る</a></p>
  21. </div>