app/template/default/Block/refine_new_product.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. <div class="ec-BlockHedder">
  9.     <h1 class="ec-BlockHedder__title">NEW ITEM<span class="ec-BlockHedder__subtitle">新規掲載商品</span></h1>
  10. </div>
  11. {% if Products %}
  12.     <div class="ec-shelfRole" style="margin-top:20px">
  13.         <ul class="ec-shelfGrid">
  14.             {% for Product in Products  %}
  15.                 <li class="ec-shelfGrid__item">
  16.                     <a href="{{ url('product_detail', {'id': Product.id}) }}">
  17.                         <img src="{{ asset(Product.main_list_image|no_image_product, "save_image") }}" alt="{{ Product.name }}">
  18.                         <dl>
  19.                             <dt class="item_name">{{ Product.name }}</dt>
  20.                             <dd class="item_price">
  21.                                 {% if Product.hasProductClass %}
  22.                                     {% if Product.getPrice02Min == Product.getPrice02Max %}
  23.                                         {{ Product.getPrice02IncTaxMin|number_format }}円
  24.                                     {% else %}
  25.                                         {{ Product.getPrice02IncTaxMin|number_format }}円 ~ {{ Product.getPrice02IncTaxMax|number_format }}
  26.                                     {% endif %}
  27.                                 {% else %}
  28.                                     {{ Product.getPrice02IncTaxMin|number_format }}円 ~ 
  29.                                 {% endif %}
  30.                             </dd>
  31.                         </dl>
  32.                     </a>
  33.                 </li>
  34.             {% endfor %}
  35.         </ul>
  36.     </div>
  37. {% endif %}