<{if $new_item.has_item}>
<section>
<h2>新商品</h2>
<ul>
<{section name=i loop=$new_item.list max=10}>
<li>
<a href="<{$new_item.list[i].url}>">
<{if $new_item.list[i].is_soldout}>
<p>Soldout</p>
<{/if}>
<img src="<{$new_item.list[i].image_M}>" alt="<{$new_item.list[i].name}>">
<p><{$new_item.list[i].name}></p>
</a>
<p>
<a href="<{$new_item.list[i].base_category.url}>">
<{$new_item.list[i].base_category.name}>
</a>
</p>
<{if $new_item.list[i].is_sale}>
<p><{$new_item.list[i].sale_rate}>%OFF</p>
<p>¥<{$new_item.list[i].price|number_format}>(税込)</p>
<{else}>
<p>¥<{$new_item.list[i].price|number_format}>(税込)</p>
<{/if}>
</li>
<{/section}>
</ul>
</section>
<{/if}>
<section>
<h2>新商品</h2>
<ul>
<!--出力はMAX10個まで-->
<li>
<a href="/view/item/商品詳細ページリンク">
<img src="商品画像パス.jpg" alt="商品画像">
<p>商品名</p>
</a>
<p>
<a href="/view/category/商品カテゴリーページリンク">カテゴリー名</a>
</p>
<p>¥8,000(税込)</p>
</li>
<li>
<a href="/view/item/商品詳細ページリンク">
<p>Soldout</p>
<img src="商品画像パス.jpg" alt="商品画像">
<p>商品名</p>
</a>
<p>
<a href="/view/category/商品カテゴリーページリンク">カテゴリー名</a>
</p>
<p>¥8,000(税込)</p>
</li>
<li>
<a href="/view/item/商品詳細ページリンク">
<img src="商品画像パス.jpg" alt="商品画像">
<p>商品名</p>
</a>
<p>
<a href="/view/category/商品カテゴリーページリンク">カテゴリー名</a>
</p>
<p>10%OFF</p>
<p>¥7,200(税込)</p>
</li>
</ul>
</section>