{#
* This file is part of the Recommend Product plugin
*
* Copyright (C) EC-CUBE CO.,LTD. All Rights Reserved.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
#}
{% set recommend_products = repository('Plugin\\Recommend42\\Entity\\RecommendProduct').getRecommendProduct %}
<!-- ▼item_list▼ -->
<div class="ec-shelfRole mt_large">
<div class="ec-secHeading">
<span class="ec-secHeading__en font_e">RECOMMEND</span>
<span class="ec-secHeading__line"></span>
<span class="ec-secHeading__ja">おすすめ商品</span>
</div>
<ul class="ec-shelfGrid">
{% for RecommendProduct in recommend_products %}
<li class="ec-shelfGrid__item">
<a href="{{ url('product_detail', {'id': RecommendProduct.Product.id}) }}">
<p class="ec-shelfGrid__item-image">
<img src="{{ asset(RecommendProduct.Product.mainFileName|no_image_product, "save_image") }}">
</p>
<p class="item_name">{{ RecommendProduct.Product.name }}</p>
</a>
<p class="mt01">{{ RecommendProduct.comment|raw|purify|nl2br }}</p>
</li>
{% endfor %}
</ul>
</div>
<!-- ▲item_list▲ -->