{#
This file is part of Refine
Copyright(c) 2023 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.
馬庭メモ
→ 管理画面のレイアウト管理から、適当なブロックに突っ込んで、それを呼び出す格好にしないと有効にならずエラーになる。
→ 本件では、下層レイアウトの「MainBottom」に入れて呼び出すことで有効にした。
#}
{% if Products %}
<section class="products-listChecked">
<h2 class="mod-hl-01">最近チェックした商品</h2>
<div class="cardProductsContainer">
{% set producCount = 0 %}
{% set break = false %}
{% for ProductArray in Products if not break %}
{% set Product = ProductArray.Product %}
{% set hasStock = ProductArray.hasStock %}
<a href="{{ url('product_detail', {'id': Product.id}) }}" class="cardProducts" title="{{ Product.name }}">
<span class="cardProductsInner">
<img src="{{ asset(Product.main_list_image|no_image_product, "save_image") }}" alt="{{ Product.name }}" class="imgObjectFitCover" loading="lazy">
</span>
</a>
{% set producCount = producCount+1 %}
{% if producCount >= 7 %}
{% set break = true %}
{% endif %}
{% endfor %}
</div>
</section>
{% endif %}