{#
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.
#}
{% set NewsList = repository('Eccube\\Entity\\News').getList() %}
<div class="xs-gutter">
<h2 class="heading-section heading-section--with-border">お知らせ</h2>
<div class="news-container">
{% for News in NewsList %}
<a href={{ url('news_detail', {'id': News.id}) }} class="news-item">
<div>
<span class="news-item__important">重要</span>
{{ News.publish_date|date_day }}
</div>
<span class="news-item__label">{{ News.title }}</span>
</a>
{% endfor %}
</div>
</div>