app/template/default/Block/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 NewsList = repository('Eccube\\Entity\\News').getList() %}
  9. <div class="xs-gutter">
  10.     <h2 class="heading-section heading-section--with-border">お知らせ</h2>
  11.     <div class="news-container">
  12.         {% for News in NewsList %}
  13.             <a href={{ url('news_detail',  {'id': News.id}) }} class="news-item">
  14.                     <div>
  15.                         <span class="news-item__important">重要</span>
  16.                         {{ News.publish_date|date_day }}
  17.                     </div>
  18.                     <span class="news-item__label">{{ News.title }}</span>
  19.             </a>
  20.         {% endfor %}
  21.     </div>
  22. </div>