app/template/kaorime/Block/refine_check_item.twig line 1

Open in your IDE?
  1. {#
  2. This file is part of Refine
  3. Copyright(c) 2023 Refine Co.,Ltd. All Rights Reserved.
  4. https://www.re-fine.jp/
  5. For the full copyright and license information, please view the LICENSE
  6. file that was distributed with this source code.
  7.     馬庭メモ
  8.     → 管理画面のレイアウト管理から、適当なブロックに突っ込んで、それを呼び出す格好にしないと有効にならずエラーになる。
  9.     → 本件では、下層レイアウトの「MainBottom」に入れて呼び出すことで有効にした。
  10. #}
  11. {% if Products %}
  12.     <section class="products-listChecked">
  13.         <h2 class="mod-hl-01">最近チェックした商品</h2>
  14.         <div class="cardProductsContainer">
  15.             {% set producCount = 0 %}
  16.             {% set break = false %}
  17.             {% for ProductArray in Products if not break %}
  18.                 {% set Product = ProductArray.Product %}
  19.                 {% set hasStock = ProductArray.hasStock %}
  20.                 <a href="{{ url('product_detail', {'id': Product.id}) }}" class="cardProducts" title="{{ Product.name }}">
  21.                     <span class="cardProductsInner">
  22.                       <img src="{{ asset(Product.main_list_image|no_image_product, "save_image") }}" alt="{{ Product.name }}" class="imgObjectFitCover" loading="lazy">
  23.                     </span>
  24.                 </a>
  25.                 {% set producCount = producCount+1 %}
  26.                 {% if producCount >= 7 %}
  27.                     {% set break = true %}
  28.                 {% endif %}
  29.             {% endfor %}
  30.         </div>
  31.     </section>
  32. {% endif %}