{#
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.
#}
{% block javascript %}
<script>
$(function () {
$('#js-slider-2').slick({
arrows: true, // 前・次のボタンを表示する
speed: 500, // スライドさせるスピード(ミリ秒)
slidesToShow: 4, // 表示させるスライド数
centerMode: true, // slidesToShowが奇数のとき、現在のスライドを中央に表示する
variableWidth: true, // スライド幅の自動計算を無効化
});
});
</script>
{% endblock %}
{% block stylesheet %}
<style>
.pickedCard {
width: auto;
height: auto;
}
.img-wrap {
width: 300px;
height: 400px;
}
.img {
width: auto;
max-width: 100%;
height: auto;
max-height: 400px;
}
</style>
{% endblock %}
<div class="ec-role">
<div class="ec-secHeading">
<div class="component-title">注目の作品</div>
<h4 class="mt-5px">販売中の人気現代アート作品をご覧いただけます</h4>
</div>
<ul class="slider-2" id="js-slider-2">
{% for product in products %}
{% if product.ProductImage[0] is defined %}
<li>
<div class="ec-newItemRole__listItem pickedCard">
<a href="{{ url('product_detail', {'id': product.id}) }}" class="text-decoration">
{# 最初の一枚だけで #}
<div class="img-wrap"><img class="img" src="{{ asset(product.ProductImage[0], 'save_image') }}" /></div>
<p class="ec-newItemRole__listItemTitle fontWeightBold">{{ product.name|trans }}</p>
<p class="ec-newItemRole__listItemPrice fontWeightBold">¥{{ product.getPrice02IncTaxMax|trans }}(税込)</p>
</a>
{# 画像全部表示させたい時 #}
{# {% for productImage in product.ProductImage %}
<div><img src="{{ asset(productImage, 'save_image') }}" /></div>
{% endfor %} #}
</div>
</li>
{% endif %}
{% endfor %}
</ul>
</div>