app/template/bravers/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">
  11.         <ul class="breadcrumb p-none">
  12.             <li class="breadcrumb__item">
  13.                 <a href="{{ url('homepage') }}" class="breadcrumb__item__link">
  14.                     ホーム
  15.                 </a>
  16.             </li>
  17.             <li class="breadcrumb__item">
  18.                 <p class="breadcrumb__item__arrow">></p>
  19.             </li>
  20.             <li class="breadcrumb__item">
  21.                 <p class="breadcrumb__item__text">特定商取引法に基づく表記</p>
  22.             </li>
  23.         </ul>
  24.         <div class="ec-pageHeader text-center">
  25.             <h1> {{ '特定商取引法に基づく表記'|trans }}</h1>
  26.         </div>
  27.         <div class="ec-tradelaw">
  28.                 <table>
  29.                 {% for tradelaw in tradelaws|filter(t => t.name and t.description)  %}
  30.                 <tr>
  31.                     <th>
  32.                         {{ tradelaw.name }}
  33.                     </th>
  34.                     <td class="disable-auto-tel">{{ tradelaw.description|raw }}</td>
  35.                 </tr>
  36.                 {% endfor %}
  37.                 </table>
  38.             </div>
  39.         </div>
  40.     </div>
  41. {% endblock %}