app/template/default/index.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. {% extends 'default_frame.twig' %}
  9. {% set body_class = 'front_page' %}
  10. {% set main_class = 'l-main l-main--home' %}
  11. {% block stylesheet %}
  12. {% endblock %}
  13. {% block javascript %}
  14.     <script>
  15.         $(function() {
  16.           if (window.matchMedia( '(max-width: 1024px)' ).matches) {
  17.             //スライダー
  18.             $('#js-recommend-slider').slick({
  19.                 autoplay: false,
  20.                 slidesToShow: 1,
  21.                 arrows: false,
  22.                 dots:false,
  23.                 centerMode: true,
  24.                 centerPadding: '11.5%',
  25.             });
  26.           };
  27.         });
  28.     </script>
  29. {% endblock javascript %}
  30. {% block main %}
  31. {% endblock %}