app/template/magamar/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. <div class="ec-role narrow-contents">
  11.     <div class="ec-pageHeader">
  12.         <h1> {{ '特定商取引法に基づく表記'|trans }}</h1>
  13.     </div>
  14.     <div class="content-inner content-help">
  15.         <ul class="content-help__list">
  16.             {% for tradelaw in tradelaws|filter(t => t.name and t.description)  %}
  17.             <li>
  18.                 <dl>
  19.                     <dt>{{ tradelaw.name }}</dt>
  20.                     <dd>{{ tradelaw.description|raw }}</dd>
  21.                 </dl>
  22.             </li>
  23.             {% endfor %}
  24.         </ul>
  25.     </div>
  26. </div>
  27. {% endblock %}