{#
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-role">
<ul class="breadcrumb p-none">
<li class="breadcrumb__item">
<a href="{{ url('homepage') }}" class="breadcrumb__item__link">
ホーム
</a>
</li>
<li class="breadcrumb__item">
<p class="breadcrumb__item__arrow">></p>
</li>
<li class="breadcrumb__item">
<p class="breadcrumb__item__text">特定商取引法に基づく表記</p>
</li>
</ul>
<div class="ec-pageHeader text-center">
<h1> {{ '特定商取引法に基づく表記'|trans }}</h1>
</div>
<div class="ec-tradelaw">
<table>
{% for tradelaw in tradelaws|filter(t => t.name and t.description) %}
<tr>
<th>
{{ tradelaw.name }}
</th>
<td class="disable-auto-tel">{{ tradelaw.description|raw }}</td>
</tr>
{% endfor %}
</table>
</div>
</div>
</div>
{% endblock %}