{#
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="mob_top-content-box">
<h2>カードショップマナ 新着情報</h2>
<div class="news-box">
{% for News in NewsList %}
<div class="news-smallbox">
{% if News.url %}
<a href="{{ News.url }}" {% if News.link_method == '1' %}target="_blank"{% endif %}>
<div class="news-1">
<div class="inter">
{{ News.publish_date|date_day }}
</div>
<div class="">
{{ News.title }}<span class="news-desc">{{ News.description|raw|nl2br }}</span>
</div>
</div>
</a>
{% else %}
<a href={{ url('news_detail', {'id': News.id}) }} >
<div class="news-1">
<div class="inter">
{{ News.publish_date|date_day }}
</div>
<div class="">
{{ News.title }}<span class="news-desc">詳細はこちらをクリック</span>
</div>
</div>
</a>
{% endif %}
</div>
{% endfor %}
</div>
</div>