app/template/kinkodo/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
  11.                 class="main-top">
  12.                 {# ページタイトル #}
  13.                 <div id="pagetitle">
  14.                         <h2>
  15.                                 TRADELAW
  16.                                 <small>特定商取引法に基づく表記</small>
  17.                         </h2>
  18.                         <div class="image">
  19.                                 <img src="{{ asset('assets/assets/images/pagetitle-image-guide.jpg') }}">
  20.                         </div>
  21.                 </div>
  22.         </div>
  23.         
  24.        
  25.             
  26.                     <div class="heading1">
  27.                         <h2>
  28.                                 {{ '特定商取引法に基づく表記'|trans }}
  29.                                 <small>TRADELAW</small>
  30.                         </h2>
  31.                 </div>
  32.                 
  33.                 
  34.                 <div class="tableset type-normal">
  35.             <table>
  36.                 <tbody>
  37.                      {% for tradelaw in tradelaws|filter(t => t.name and t.description)  %}
  38.                     <tr>
  39.                     <th><label class="ec-label">{{ tradelaw.name }}</label></th>
  40.                     <td>{{ tradelaw.description|raw }}</td>
  41.                 </tr>
  42.                 {% endfor %}
  43.             
  44.             </tbody></table>
  45.         </div>
  46.                 
  47.             
  48.             
  49.             
  50.           
  51. {% endblock %}