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 javascript %}
  9.     <script type="module" src="{{ asset('assets/js/footer.js') }}"></script> {# デザイン側ではlayout.twigに置いているがそれでは動かない為ここへ配置 #}
  10. {% endblock %}
  11. <footer class="footer">
  12.     <div class="footer_inner">
  13.         <p class="footer_logo">
  14.             <img src="{{ asset('assets/img/customize/img_logo.svg') }}" alt="Dr.ウィラード・ウォーター" width="133.1" height="80"/>
  15.         </p>
  16.         <nav class="footer_nav">
  17.             <div class="footer_nav_block">
  18.                 <h2 class="footer_nav_title">{{ 'front.for.product.search_for_products'|trans }}</h2>
  19.                 <ul class="footer_nav_list">
  20.                     <li>
  21.                         <a href="{{ url('product_list') }}">{{ 'front.for.product.product_list'|trans }}</a>
  22.                     </li>
  23.                     <li>
  24.                         <a href="{{ url('product_list', { 'category_id': 1 }) }}">スキンケア</a>
  25.                     </li>
  26.                     <li>
  27.                         <a href="{{ url('product_list', { 'category_id': 2 }) }}">メイクアップ</a>
  28.                     </li>
  29.                     <li>
  30.                         <a href="{{ url('product_list', { 'category_id': 3 }) }}">ヘア&ボディ</a>
  31.                     </li>
  32.                     <li>
  33.                         <a href="{{ url('product_list', { 'category_id': 5 }) }}">トライアルセット</a>
  34.                     </li>
  35.                     {# TODO: 定期メニュー確認中の為、仮でコメントアウト #}
  36.                     {# <li>
  37.                         <a href="">定期購入</a>
  38.                     </li> #}
  39.                     <li>
  40.                         <a href="{{ url('product_list', { 'category_id': 6 }) }}">セット商品</a>
  41.                     </li>
  42.                     <li>
  43.                         <a href="{{ url('product_list', { 'category_id': 4 }) }}">セピア(ペットケア)</a>
  44.                     </li>
  45.                 </ul>
  46.             </div>
  47.             <div class="footer_nav_block">
  48.                 <h2 class="footer_nav_title">コンテンツ</h2>
  49.                 <ul class="footer_nav_list">
  50.                     <li>
  51.                         <a href="{{ url('special') }}">{{ 'front.for.special.title'|trans }}</a>
  52.                     </li>
  53.                     <li>
  54.                         <a href="{{ url('brandconcept') }}">{{ 'front.for.brandconcept.title'|trans }}</a>
  55.                     </li>
  56.                     <li>
  57.                         <a href="{{ url('information') }}">最新情報</a>
  58.                     </li>
  59.                     <li>
  60.                         <a href="https://www.willard.co.jp/wblog/">{{ 'front.for.wblog.title'|trans }}</a>
  61.                     </li>
  62.                     <li>
  63.                         <a href="{{ url('newsletter') }}">{{ 'front.for.newsletter.title'|trans }}</a>
  64.                     </li>
  65.                 </ul>
  66.             </div>
  67.             <div class="footer_nav_block">
  68.                 <h2 class="footer_nav_title">お買い物サポート</h2>
  69.                 <ul class="footer_nav_list">
  70.                     <li>
  71.                         <a href="{{ url('pointservice') }}">{{ 'front.for.pointservice.title'|trans }}</a>
  72.                     </li>
  73.                     <li>
  74.                         <a href="{{ url('subscription') }}">定期購入について</a>
  75.                     </li>
  76.                     <li>
  77.                         <a href="{{ url('referral') }}">{{ 'front.for.referral.title'|trans }}</a>
  78.                     </li>
  79.                     <li>
  80.                         <a href="{{ url('shippingfee') }}">{{ 'front.for.shippingfee.title'|trans }}</a>
  81.                     </li>
  82.                     <li>
  83.                         <a href="{{ url('access') }}">ショールーム・お取り扱い店舗紹介</a>
  84.                     </li>
  85.                     <li>
  86.                         <a href="{{ url('help_guide') }}">{{ 'front.guide.title'|trans }}</a>
  87.                     </li>
  88.                     <li>
  89.                         <a href="{{ url('faq') }}">{{ 'front.for.faq.title_short'|trans }}</a>
  90.                     </li>
  91.                     <li>
  92.                         <a href="{{ url('contact_index') }}">{{ 'front.for.contact_index.title'|trans }}</a>
  93.                     </li>
  94.                     <li>
  95.                         <a href="{{ url('contact') }}">{{ 'front.for.contact.request_catalog'|trans }}</a>
  96.                     </li>
  97.                 </ul>
  98.             </div>
  99.             <div class="footer_nav_block">
  100.                 <h2 class="footer_nav_title">{{ 'front.for.company.title'|trans }}</h2>
  101.                 <ul class="footer_nav_list">
  102.                     <li>
  103.                         <a href="{{ url('company') }}">{{ 'front.for.company.title'|trans }}</a>
  104.                     </li>
  105.                     <li>
  106.                         <a href="{{ url('company_message') }}">{{ 'front.for.company.message_title'|trans }}</a>
  107.                     </li>
  108.                     <li>
  109.                         <a href="{{ url('company_encounter') }}">Dr.ウィラード・ウォーター<br>誕生ストーリー</a>
  110.                     </li>
  111.                     <li>
  112.                         <a href="{{ url('company_about') }}">{{ 'front.for.company.about_title'|trans }}</a>
  113.                     </li>
  114.                     <li>
  115.                         <a href="{{ url('company_history') }}">{{ 'front.for.company.history_title'|trans }}</a>
  116.                     </li>
  117.                 </ul>
  118.             </div>
  119.             <div class="footer_nav_under">
  120.                 <ul class="footer_nav_under_list">
  121.                     <li><a href="{{ url('privacy') }}">{{ 'front.privacy.title'|trans }}</a></li>
  122.                     <li><a href="{{ url('terms') }}">{{ 'front.agreement.title'|trans }}</a></li>
  123.                     <li><a href="{{ url('legal') }}">{{ 'front.for.legal.title'|trans }}</a></li>
  124.                     <li><a href="{{ url('sitemap') }}">{{ 'front.for.sitemap.title'|trans }}</a></li>
  125.                 </ul>
  126.             </div>
  127.         </nav>
  128.         <ul class="footer_sns-list">
  129.             <li>
  130.                 <a href="https://www.facebook.com/willardwater" target="_blank" rel="noopener"><img src="{{ asset('assets/img/customize/icon_sns_facebook.svg') }}" alt="Facebook" width="30" height="30"/></a>
  131.             </li>
  132.             <li>
  133.                 <a href="https://x.com/willard_water" target="_blank" rel="noopener"><img src="{{ asset('assets/img/customize/icon_sns_x.svg') }}" alt="Twitter" width="30" height="30"/></a>
  134.             </li>
  135.             <li>
  136.                 <a href="https://www.instagram.com/dr.willardwater_daikanyama/" target="_blank" rel="noopener"><img src="{{ asset('assets/img/customize/icon_sns_instagram.svg') }}" alt="Instagram" width="30" height="30"/></a>
  137.             </li>
  138.             <li>
  139.                 <a href="https://www.youtube.com/@dr.2951" target="_blank" rel="noopener"><img src="{{ asset('assets/img/customize/icon_sns_youtube.svg') }}" alt="YouTube" width="30" height="30"/></a>
  140.             </li>
  141.         </ul>
  142.         <p class="copyright">Copyright 2023 Dr. Willard's Water All rights reserved.</p>
  143.     </div>
  144. </footer>