{#
This file is part of Refine
Copyright(c) 2021 Refine Co.,Ltd. All Rights Reserved.
https://www.re-fine.jp/
For the full copyright and license information, please view the LICENSE
file that was distributed with this source code.
#}
{% if Products %}
<div class="ec-shelfRole mt_large">
<div class="ec-secHeading">
<span class="ec-secHeading__en font_e">NEW ITEM</span>
<span class="ec-secHeading__line"></span>
<span class="ec-secHeading__ja">新着商品</span>
</div>
<ul class="ec-shelfGrid">
{% for Product in Products %}
<li class="ec-shelfGrid__item">
<a href="{{ url('product_detail', {'id': Product.id}) }}">
<p class="ec-shelfGrid__item-image">
<img src="{{ asset(Product.main_list_image|no_image_product, "save_image") }}" alt="{{ Product.name }}">
</p>
<p class="item_name">{{ Product.name }}</p>
</a>
</li>
{% endfor %}
</ul>
</div>
{% endif %}