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. {% block main %}
  11. <style>
  12. /*全てに適用*/    
  13. /*ウィンドウ幅が767px以上の場合に適用*/
  14. @media screen and (min-width: 767px) { 
  15.     
  16.     }
  17. /*ウィンドウ幅が最大767pxまでの場合に適用*/
  18. @media screen and (max-width: 767px) { 
  19.     }
  20. </style>
  21. {{ include('Block/GW.twig') }}
  22. <h2 class="d_item_title">おすすめの商品</h2>
  23. {% endblock %}