{#
This file is part of EC-CUBE
Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
http://www.ec-cube.co.jp/
For the full copyright and license information, please view the LICENSE
file that was distributed with this source code.
#}
{% set Makers = repository('Plugin\\Maker42\\Entity\\Maker').findBy({}, {sort_no: 'desc' }, 5) %}
<div class="maker_list">
<dl>
<dt>メーカー一覧</dt>
<dd>
<ul class="js-leftmenu-maker-list">
{% for Maker in Makers %}
<li><a class="maker-list-link" href="{{ url('product_list') }}?maker_id={{ Maker.id }}">{{ Maker.name }}</a></li>
{% endfor %}
</ul>
</dd>
</dl>
<p><a class="js-makerlist-link" href="{{ url('maker') }}">一覧を見る</a></p>
</div>