{#
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.
#}
{% extends 'default_frame.twig' %}
{% set body_class = 'front_page' %}
{% set main_class = 'l-main l-main--home' %}
{% block stylesheet %}
{% endblock %}
{% block javascript %}
<script>
$(function() {
if (window.matchMedia( '(max-width: 1024px)' ).matches) {
//スライダー
$('#js-recommend-slider').slick({
autoplay: false,
slidesToShow: 1,
arrows: false,
dots:false,
centerMode: true,
centerPadding: '11.5%',
});
};
});
</script>
{% endblock javascript %}
{% block main %}
{% endblock %}