{#
This file is part of EC-CUBE
Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
http://www.ec-cube.co.jp/
For the full copyright and license information, please view the LICENSE
file that was distributed with this source code.
#}
<section class="lineup">
<div class="shoptitle"><strong>ニィ・パラディッサ Online Shop</strong></div>
<div class="wrap">
<h2 class="subtitle"><strong class="fadein active"><i>P</i>ickup</strong>おすすめ商品</h2>
{% set nProducts = CustomizeNewProduct() %}
{% if nProducts|length > 0 %}
<ul>
{% for Product in nProducts %}
<li>
<a href="{{ url('product_detail', {'id':Product.id}) }}">
<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;">
<p>{{Product.name}}<strong>
{% if Product.hasProductClass %}
{% if Product.getPrice02Min == Product.getPrice02Max %}
{{ Product.getPrice02IncTaxMin|price }}
{% else %}
{{ Product.getPrice02IncTaxMin|price }} ~ {{ Product.getPrice02IncTaxMax|price }}
{% endif %}
{% else %}
{{ Product.getPrice02IncTaxMin|price }}
{% endif %}
</strong>
</p>
</a>
</li>
{% endfor %}
</ul>
{% endif %}
<!--p class="txtC"><a href="{{ url('product_list') }}" class="btn">All goods</a></p-->
</div>
</section>