{#
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">
<div class="ec-pageHeader">
<h1 class="mainttl"> {{ '特定商取引に関する法律に基づく表記'|trans }}</h1>
</div>
<div id="undercolumn">
<div id="undercolumn_order">
<div class="abouts table-layout">
{% for tradelaw in tradelaws|filter(t => t.name and t.description) %}
<div class="tr">
<div class="th w3">{{ tradelaw.name }}</div>
<div class="td w9">{{ tradelaw.description|raw }}</div>
</div>
{% endfor %}
</div>
</div>
</div>
</div>
{% endblock %}