app/template/default/Block/new_item.twig line 1

Open in your IDE?
  1. {#
  2. This file is part of EC-CUBE
  3. Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
  4. http://www.ec-cube.co.jp/
  5. For the full copyright and license information, please view the LICENSE
  6. file that was distributed with this source code.
  7. #}
  8. <section class="lineup">
  9. <div class="shoptitle"><strong>ニィ・パラディッサ Online Shop</strong></div>
  10. <div class="wrap">
  11. <h2 class="subtitle"><strong class="fadein active"><i>P</i>ickup</strong>おすすめ商品</h2>
  12. {% set nProducts = CustomizeNewProduct() %}
  13. {% if nProducts|length > 0 %}
  14. <ul>
  15. {% for Product in nProducts %}
  16. <li>
  17. <a href="{{ url('product_detail', {'id':Product.id}) }}">
  18. <img src="{{ asset(Product.main_list_image|no_image_product, 'save_image') }}" alt="{{ Product.name }}" loading="lazy" style="width:100%;max-width:188px;height:100%;max-height: 188px;">
  19. <p>{{Product.name}}<strong>
  20.                     {% if Product.hasProductClass %}
  21.                         {% if Product.getPrice02Min == Product.getPrice02Max %}
  22.                             {{ Product.getPrice02IncTaxMin|price }}
  23.                         {% else %}
  24.                             {{ Product.getPrice02IncTaxMin|price }} ~ {{ Product.getPrice02IncTaxMax|price }}
  25.                         {% endif %}
  26.                     {% else %}
  27.                         {{ Product.getPrice02IncTaxMin|price }}
  28.                     {% endif %}
  29.                     </strong>
  30.                     </p>
  31. </a>
  32. </li>
  33. {% endfor %}
  34. </ul>
  35. {% endif %}
  36. <!--p class="txtC"><a href="{{ url('product_list') }}" class="btn">All goods</a></p-->
  37. </div>
  38. </section>