src/Eccube/Resource/template/default/top_news.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. {% set body_class = 'front_page' %}
  9. {% block javascript %}
  10.     <script>
  11.         $(function () {
  12.             $('.main_visual').slick({dots: true, arrows: false, autoplay: true, speed: 300});
  13.         });
  14.     </script>
  15. {% endblock javascript %}
  16. {% block main %}
  17.     <a class="w-full flex flex-col gap-y-2 md:gap-y-1 py-4 border-t last:border-t border-[#EFEFEF] md:pb-[14px] md:pt-[18px] md:text-xs" href="/news/{{dataKey}}">
  18.         <p class="whitespace-nowrap text-[10px]">
  19.             {{date.format('Y m d')}}
  20.         </p>
  21.         <p class="md:text-xs truncate md:max-w-[max(66vw,248px)]">
  22.             {{title}}
  23.         </p>
  24.     </a>
  25. {% endblock %}