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) 2021 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. {% if Products %}
  9.     <div class="ec-shelfRole mt_large">
  10.         <div class="ec-secHeading">
  11.             <span class="ec-secHeading__en font_e">NEW ITEM</span>
  12.             <span class="ec-secHeading__line"></span>
  13.             <span class="ec-secHeading__ja">新着商品</span>
  14.         </div>
  15.         <ul class="ec-shelfGrid">
  16.             {% for Product in Products  %}
  17.                 <li class="ec-shelfGrid__item">
  18.                     <a href="{{ url('product_detail', {'id': Product.id}) }}">
  19.                         <p class="ec-shelfGrid__item-image">
  20.                             <img src="{{ asset(Product.main_list_image|no_image_product, "save_image") }}" alt="{{ Product.name }}">
  21.                         </p>
  22.                         <p class="item_name">{{ Product.name }}</p>
  23.                     </a>
  24.                 </li>
  25.             {% endfor %}
  26.         </ul>
  27.     </div>
  28. {% endif %}