app/template/default/Help/tradelaw.twig line 1

Open in your IDE?
  1. {#
  2. This file is part of EC-CUBE
  3. Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
  4. http://www.ec-cube.co.jp/
  5. For the full copyright and license information, please view the LICENSE
  6. file that was distributed with this source code.
  7. #}
  8. {% extends 'default_frame.twig' %}
  9. {% block main %}
  10. <section class="bg__attr">
  11.     <div class="ec-role">
  12.         <div class="ec-pageHeader">
  13.             <h1> {{ '特定商取引法に基づく表記'|trans }}</h1>
  14.         </div>
  15.         <div class="ec-off1Grid">
  16.             <div class="ec-off1Grid__cell">
  17.                 <div class="ec-borderedDefs">
  18.                     {% for tradelaw in tradelaws|filter(t => t.name and t.description)  %}
  19.                     <dl>
  20.                         <dt>
  21.                             <label class="ec-label">{{ tradelaw.name }}</label>
  22.                         </dt>
  23.                         <dd>{{ tradelaw.description|raw }}</dd>
  24.                     </dl>
  25.                     {% endfor %}
  26.                 </div>
  27.             </div>
  28.         </div>
  29.     </div>
  30. </section>
  31. {% endblock %}