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="p-lower-mv">
  11.     <div class="inner">
  12.         <h2 class="p-lower-mv-title"><span>特定商取引法に関する表記</span></h2>
  13.         <div class="under bread_wrap">
  14.             <ol itemscope itemtype="https://schema.org/BreadcrumbList">
  15.                 <li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
  16.                     <a itemprop="item" href="{{ url('homepage') }}">
  17.                         <span class="freight-neo-pro" itemprop="name">TOP</span>
  18.                     </a>
  19.                     <meta itemprop="position" content="1" />
  20.                 </li>
  21.                 <li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
  22.                     <a itemprop="item" href="{{ url('help_tradelaw') }}">
  23.                         <span class="freight-neo-pro" itemprop="name">特定商取引法に関する表記</span>
  24.                     </a>
  25.                     <meta itemprop="position" content="2" />
  26.                 </li>
  27.             </ol>
  28.         </div>
  29.         <!-- /.bread_wrap -->
  30.     </div>
  31. </section>
  32. <section class="tradelaw">
  33.     <div class="inner">
  34.         {% for tradelaw in tradelaws|filter(t => t.name and t.description)  %}
  35.         <dl class="tradelaw-list">
  36.             <dt class="tradelaw-title">{{ tradelaw.name }}</dt>
  37.             <dd class="tradelaw-desc">{{ tradelaw.description|raw }}</dd>
  38.         </dl>
  39.         {% endfor %}
  40.     </div>
  41. </section>
  42. {% endblock %}