app/template/default/Block/footer.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. {% block stylesheet %}
  9. <style>
  10.     .ec-footerTitle__logo{
  11.         width: 200px;
  12.         margin: 0 auto;
  13.     }
  14. </style>
  15. {% endblock %}
  16. <div class="ec-footerRole">
  17.     <div class="ec-footerRole__inner">
  18.         <ul class="ec-footerNavi">
  19.             <li class="ec-footerNavi__link">
  20.                 <a href="{{ url('help_about') }}">{{ '当サイトについて'|trans }}</a>
  21.             </li>
  22.             <li class="ec-footerNavi__link">
  23.                 <a href="{{ url('help_privacy') }}">{{ 'プライバシーポリシー'|trans }}</a>
  24.             </li>
  25.             <li class="ec-footerNavi__link">
  26.                 <a href="{{ url('help_tradelaw') }}">{{ '特定商取引法に基づく表記'|trans }}</a>
  27.             </li>
  28.             <li class="ec-footerNavi__link">
  29.                 <a href="{{ url('help_agreement') }}">{{ 'ご利用規約'|trans }}</a>
  30.             </li>
  31.             <li class="ec-footerNavi__link">
  32.                 <a href="https://shichiyo.co.jp/contact/?source=1">{{ 'お問い合わせ'|trans }}</a>
  33.             </li>
  34.         </ul>
  35.         <div class="ec-footerTitle">
  36.             <div class="ec-footerTitle__logo">
  37.                 <a href="{{ url('homepage') }}">
  38.                     <img src="/html/user_data/assets/img/common/footerLogo.svg" alt="FRONT LINES">
  39.                 </a>
  40.             </div>
  41.             <div class="ec-footerTitle__copyright">Copyright © 2015-2023 FRONTLINE. All Rights Reserved.</div>
  42.         </div>
  43.     </div>
  44. </div>