{#
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="main-top">
{# ページタイトル #}
<div id="pagetitle">
<h2>
TRADELAW
<small>特定商取引法に基づく表記</small>
</h2>
<div class="image">
<img src="{{ asset('assets/assets/images/pagetitle-image-guide.jpg') }}">
</div>
</div>
</div>
<div class="heading1">
<h2>
{{ '特定商取引法に基づく表記'|trans }}
<small>TRADELAW</small>
</h2>
</div>
<div class="tableset type-normal">
<table>
<tbody>
{% for tradelaw in tradelaws|filter(t => t.name and t.description) %}
<tr>
<th><label class="ec-label">{{ tradelaw.name }}</label></th>
<td>{{ tradelaw.description|raw }}</td>
</tr>
{% endfor %}
</tbody></table>
</div>
{% endblock %}