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.     <div class="ec-productRole">
  11.         <ol class="breadcrumb" itemscope itemtype="https://schema.org/BreadcrumbList">
  12.             <li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
  13.                 <a itemprop="item" href="{{ url('homepage') }}">
  14.                     <span itemprop="name">TOP</span>
  15.                 </a>
  16.                 <meta itemprop="position" content="1" />
  17.             </li>
  18.             <li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
  19.                 <a itemprop="item" href="{{ url('help_tradelaw') }}">
  20.                     <span itemprop="name">特定商取引法に基づく表記</span>
  21.                 </a>
  22.                 <meta itemprop="position" content="2" />
  23.             </li>
  24.         </ol>
  25.     </div>
  26.     <div class="ec-role">
  27.         <div class="ec-pageHeader">
  28.             <h1> {{ '特定商取引法に基づく表記'|trans }}<br><span>Act on Specified Commercial Transactions</span></h1>
  29.         </div>
  30.         <div class="ec-off1Grid tradelaw-in">
  31.             <div class="ec-off1Grid__cell">
  32.                 <div class="ec-borderedDefs">
  33.                                     <dl>
  34.                     {% for tradelaw in tradelaws|filter(t => t.name and t.description)  %}
  35.                         <div class="tradelaw-li">
  36.                         <dt>
  37.                             <label class="ec-label">{{ tradelaw.name }}</label>
  38.                         </dt>
  39.                         <dd>{{ tradelaw.description|raw }}</dd>
  40.                         </div>
  41.                     {% endfor %}
  42.                                         </dl>
  43.                 </div>
  44.             </div>
  45.         </div>
  46.     </div>
  47. {% endblock %}