{#
* 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 id="topitems">
<div class="container pt-5 pb-5">
<div class="row mb-5">
<div class="col-12 text-center">
<div class="fw-bold mb-3 font18">あおいのお菓子</div>
あおい自慢のお菓子をご覧いただけます
</div>
</div>
<div class="row mb-5">
<div class="col-12 text-center">
<div class="ec-shelfRole">
<ul class="ec-shelfGrid">
{% for RecommendProduct in recommend_products %}
<li class="ec-shelfGrid__item">
<a href="{{ url('product_detail', {'id': RecommendProduct.Product.id}) }}" class="recommend">
<img src="{{ asset(RecommendProduct.Product.mainFileName|no_image_product, "save_image") }}">
<p>{{ RecommendProduct.comment|raw|purify|nl2br }}</p>
<dl>
<dt class="item_name">{{ RecommendProduct.Product.name }}</dt>
<dd class="item_price">
{% if RecommendProduct.Product.hasProductClass %}
{% if RecommendProduct.Product.getPrice02Min == RecommendProduct.Product.getPrice02Max %}
{{ RecommendProduct.Product.getPrice02IncTaxMin|price }}
{% else %}
{{ RecommendProduct.Product.getPrice02IncTaxMin|price }} ~ {{ RecommendProduct.Product.getPrice02IncTaxMax|price }}
{% endif %}
{% else %}
{{ RecommendProduct.Product.getPrice02IncTaxMin|price }}
{% endif %}
</dd>
</dl>
</a>
</li>
{% endfor %}
</ul>
</div>
<!-- ▲item_list▲ -->
</div>
</div>
<div class="row mb-5">
<div class="col-12 text-center">
<a class="btn-orange" href="{{url('product_list')}}">全てのお菓子を見る</a>
</div>
</div>
</div>
</div>