{#
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.
#}
{% extends 'default_frame.twig' %}
{% block main %}
<div class="ec-searchnavRole">
<div class="ec-productRole">
<ol class="breadcrumb" itemscope itemtype="https://schema.org/BreadcrumbList">
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<a itemprop="item" href="{{ url('homepage') }}">
<span itemprop="name">TOP</span>
</a>
<meta itemprop="position" content="1"/>
</li>
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<span itemprop="name">{{ news.title }}</span>
<meta itemprop="position" content="2"/>
</li>
</ol>
</div>
</div>
<div class="ec-role">
<div class="news-{{ news.id }}">
<div class="ec-newsRole__wrap">
<p class="ec-newsRole__date"><small>{{ news.publish_date|date("Y/m/d") }}</small></p>
<h1 class="ec-newsRole__title">{{ news.title }}</h1>
{% if news.np_thumbnail_url == true %}
<div class="npsr-thumbnail">
<img src="{{ asset( news.np_thumbnail_url , 'save_image') }}" alt="{{ news.title }}">
</div>
{% endif %}
<div class="npsr-content">
{{ news.description|raw }}
</div>
</div>
</div>
</div>
{% endblock %}