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.    <!-- footer section -->
  9.    <div class="footer-section">
  10.     <div class="curved-background-top"></div>
  11.     <div class="footer-content-top-container">
  12.       <div class="footer-content-top">
  13.         <!-- Decorative Left Image -->
  14.         <div class="footer-decoration footer-decoration--left">
  15.           <img src="{{ asset('assets/img/default/footer/footer-left.png') }}" alt="Decoration" loading="lazy">
  16.         </div>
  17.         <!-- Decorative Right Image -->
  18.         <div class="footer-decoration footer-decoration--right">
  19.           <img src="{{ asset('assets/img/default/footer/footer-right.png') }}" alt="Decoration" loading="lazy">
  20.         </div>
  21.         <!-- FAQ Card -->
  22.         <a href="{{ url('faq') }}" class="footer-card">
  23.           <div class="footer-card__background">
  24.             <img src="{{ asset('assets/img/default/footer/footer-faq.png') }}" alt="FAQ Background" loading="lazy">
  25.           </div>
  26.           <div class="footer-card__content">
  27.             <div class="footer-card__subtitle">
  28.               <div class="footer-card__icon">
  29.                 <img src="{{ asset('assets/img/default/icons/icon-faq.svg') }}" alt="FAQ">
  30.               </div>
  31.               <span>よくあるご質問</span>
  32.             </div>
  33.             <h3 class="footer-card__title">FAQ</h3>
  34.           </div>
  35.           <div class="footer-card__arrow">
  36.             <img src="{{ asset('assets/img/default/icons/icon-heart.svg') }}" alt="Arrow" loading="lazy">
  37.           </div>
  38.         </a>
  39.         <!-- USERS GUIDE Card -->
  40.         <a href="{{ url('users_guide') }}" class="footer-card">
  41.           <div class="footer-card__background">
  42.             <img src="{{ asset('assets/img/default/footer/footer-guide.png') }}" alt="Users Guide Background" loading="lazy">
  43.           </div>
  44.           <div class="footer-card__content">
  45.             <div class="footer-card__subtitle">
  46.               <div class="footer-card__icon">
  47.                 <img src="{{ asset('assets/img/default/icons/icon-users-guide.svg') }}" alt="Users Guide">
  48.               </div>
  49.               <span>ご利用ガイド</span>
  50.             </div>
  51.             <h3 class="footer-card__title">USERS GUIDE</h3>
  52.           </div>
  53.           <div class="footer-card__arrow">
  54.             <img src="{{ asset('assets/img/default/icons/icon-heart.svg') }}" alt="Arrow" loading="lazy">
  55.           </div>
  56.         </a>
  57.       </div>
  58.       <div class="footer-content-bottom">
  59.         <!-- Decorative Background -->
  60.         <div class="footer-bottom-decoration container-desktop"></div>
  61.         <!-- Logo -->
  62.         <div class="footer-logo">
  63.           <img src="{{ asset('assets/img/default/icons/logo.png') }}" alt="CHEETAH WiFi Logo" loading="lazy">
  64.         </div>
  65.         <!-- Navigation Links -->
  66.         <nav class="footer-nav">
  67.           <a href="{{ url('homepage') }}" class="footer-nav__link text-black">ホーム</a>
  68.           <a href="{{ url('product_list') }}" class="footer-nav__link text-black">商品一覧</a>
  69.           <a href="{{ url('users_guide') }}" class="footer-nav__link text-black">ご利用ガイド</a>
  70.           <a href="{{ url('news_list') }}" class="footer-nav__link text-black">お知らせ</a>
  71.           <a href="{{ url('entry') }}"class="footer-nav__link text-black">会員登録</a>
  72.           {% if is_granted('ROLE_USER') %}
  73.             <a href="{{ url('logout') }}" class="footer-nav__link text-black">ログアウト</a>
  74.           {% else %}
  75.             <a href="{{ url('mypage_login') }}" class="footer-nav__link text-black">ログイン</a>
  76.           {% endif %}
  77.           <a href="{{ url('cart') }}" class="footer-nav__link text-black">カート</a>
  78.         </nav>
  79.         <!-- Contact Button -->
  80.         <div class="footer-contact">
  81.           <button class="btn-contact" onclick="window.location.href='{{ url('contact') }}'">
  82.             <span>お問い合わせする</span>
  83.             <div class="btn-contact__arrow">
  84.               <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
  85.                 <path d="M5.90955 1.71545L10.9366 6.74254L12.1948 7.99931L12.1941 8L12.1948 8.00069L10.9366 9.25746L5.90955 14.2845L4.65209 13.0271L9.67917 8L4.65209 2.97291L5.90955 1.71545Z" fill="white"/>
  86.               </svg>
  87.             </div>
  88.           </button>
  89.         </div>
  90.         <!-- Legal Links -->
  91.         <div class="footer-legal">
  92.           <a href="{{ url('privacy_policy') }}" class="footer-legal__link text-black">プライバシーポリシー</a>
  93.           <a href="{{ url('legal_information') }}" class="footer-legal__link text-black">特定商取引法に基づく表記</a>
  94.         </div>
  95.         <!-- Copyright -->
  96.         <div class="footer-copyright">
  97.           <p>© 2025 CHEETAH WiFi</p>
  98.         </div>
  99.         <!-- image footer mobile -->
  100.         <div class="footer-image-mobile-container container-mobile">
  101.           <div class="footer-bottom-decoration-mobile">
  102.             <img src="{{ asset('assets/img/default/footer/footer-decoration.png') }}" alt="Footer Decoration" loading="lazy">
  103.           </div>
  104.         </div>
  105.       </div>
  106.     </div>
  107.   </div>