app/template/akracing/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. <div class="ec-footerRole">
  9.     <div class="ec-footerRole__inner">
  10.         <div class="ak-footer footer1">
  11.             <ul class="ak-footer_logo">
  12.                 <li><a href="{{ url('homepage') }}"><img src="{{ asset('assets/img/common/footer_ak_logo.png') }}" alt=""></a></li>
  13.                 <li class="ak-sns-icon">
  14.                     <a href="https://twitter.com/AKRacingJapan" target="_blank"><i class="fab fa-twitter"></i></a>
  15.                     <a href="https://www.youtube.com/channel/UC3IfqphfSpYgHY-x_PA8oqw" target="_blank"><i class="fab fa-youtube"></i></a>
  16.                 </li>
  17.                 <li class="ak-footer_tekwind"><a href="https://www.tekwind.co.jp/" target="_blank"><img src="{{ asset('assets/img/common/footer_tekwind_logo.png') }}" alt="テックウィンドウ"></a></li>
  18.                 <li class="ak-footer_esports"><a href="https://esports-world.jp/"  target="_blank"><img src="{{ asset('assets/img/common/footre_eSportsWorld_logo.png') }}" alt="eSports World"></a></li>
  19.             </ul>
  20.         </div>
  21.         <div class="ak-footer footer2">
  22.             <ul class="ak-contents_list">
  23.                 <li><a href="{{ url('homepage') }}">ホーム</a></li>
  24.                 <li><a href="{{ url('homepage') }}news">ニュース</a></li>
  25.                 <li><a href="{{ url('homepage') }}gallery">ギャラリー</a></li>
  26.                 <li><a href="{{ url('homepage') }}sponsor">スポンサード</a></li>
  27.                 <li><a href="{{ url('homepage') }}support">サポート</a></li>
  28.             </ul>
  29.         </div>
  30.         <div class="ak-footer_product">
  31.             <p><a href="{{ url('homepage') }}products/list">商品一覧</a></p>
  32. {% set Categories = repository('Eccube\\Entity\\Category').getList() %}
  33. {% macro tree(Category) %}
  34.     {% from _self import tree %}
  35.     <a href="{{ url('product_list') }}?category_id={{ Category.id }}">
  36.         {{ Category.name }}
  37.     </a>
  38.     {% if Category.children|length > 0 %}
  39.         <ul>
  40.             {% for ChildCategory in Category.children %}
  41.                 <li>
  42.                     {{ tree(ChildCategory) }}
  43.                 </li>
  44.             {% endfor %}
  45.         </ul>
  46.     {% endif %}
  47. {% endmacro %}
  48. {% from _self import tree %}
  49.             <ul class="ak-product_list">
  50.                 {% for Category in Categories %}
  51.                     <li>
  52.                         {{ tree(Category) }}
  53.                     </li>
  54.                 {% endfor %}
  55.             </ul>
  56.         </div>
  57.         <div class="ak-footer footer3">
  58.             <ul class="ak-contents_list">
  59.                 <li><a href="{{ url('homepage') }}history">ヒストリー</a></li>
  60.                 <li><a href="{{ url('homepage') }}concept">コンセプト</a></li>
  61.                 <li><a href="{{ url('homepage') }}shop">取り扱い店舗</a></li>
  62.                 <li><a href="{{ url('homepage') }}quality">品質への取り組み</a></li>
  63.             </ul>
  64.         </div>
  65.         <div class="ak-footer footer4">
  66.             <ul class="ak-contents_list">
  67.                 <li><a href="{{ url('mypage') }}">マイページ</a></li>
  68.                 <li><a href="{{ url('homepage') }}help/agreement">利用規約と注文方法</a></li>
  69.                 {# <li><a href="{{ url('homepage') }}userguide">利用規約</a></li> #}
  70.                 <li><a href="{{ url('homepage') }}faq">よくある質問</a></li>
  71.                 <li><a href="{{ url('contact') }}">お問い合わせ</a></li>
  72.                 <li><a href="{{ url('homepage') }}help/tradelaw">特定商取引法について</a></li>
  73.                 <li><a href="{{ url('homepage') }}help/privacy">プライバシーポリシー</a></li>
  74.                 <li><a href="https://www.tekwind.co.jp/company/profile.php" target="_blank">運営会社</a></li>
  75.             </ul>
  76.         </div>
  77.         <div class="ec-footerTitle">
  78.             <div class="ec-footerTitle__copyright">copyright (c) {{ BaseInfo.shop_name }} all rights reserved.</div>
  79.         </div>
  80.     </div>
  81. </div>