app/template/akracing/Block/footer.twig line 1

Open in your IDE?
  1. {#
    This file is part of EC-CUBE
    
    Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
    
    http://www.ec-cube.co.jp/
    
    For the full copyright and license information, please view the LICENSE
    file that was distributed with this source code.
    #}
    <div class="ec-footerRole">
        <div class="ec-footerRole__inner">
            <div class="ak-footer footer1">
                <ul class="ak-footer_logo">
                    <li><a href="{{ url('homepage') }}"><img src="{{ asset('assets/img/common/footer_ak_logo.png') }}" alt=""></a></li>
                    <li class="ak-sns-icon">
                        <a href="https://twitter.com/AKRacingJapan" target="_blank"><i class="fab fa-twitter"></i></a>
                        <a href="https://www.youtube.com/channel/UC3IfqphfSpYgHY-x_PA8oqw" target="_blank"><i class="fab fa-youtube"></i></a>
                    </li>
                    <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>
                    <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>
                </ul>
            </div>
            <div class="ak-footer footer2">
                <ul class="ak-contents_list">
                    <li><a href="{{ url('homepage') }}">ホーム</a></li>
                    <li><a href="{{ url('homepage') }}news">ニュース</a></li>
                    <li><a href="{{ url('homepage') }}gallery">ギャラリー</a></li>
                    <li><a href="{{ url('homepage') }}sponsor">スポンサード</a></li>
                    <li><a href="{{ url('homepage') }}support">サポート</a></li>
                </ul>
            </div>
            <div class="ak-footer_product">
                <p><a href="{{ url('homepage') }}products/list">商品一覧</a></p>
    {% set Categories = repository('Eccube\\Entity\\Category').getList() %}
    {% macro tree(Category) %}
        {% from _self import tree %}
        <a href="{{ url('product_list') }}?category_id={{ Category.id }}">
            {{ Category.name }}
        </a>
        {% if Category.children|length > 0 %}
            <ul>
                {% for ChildCategory in Category.children %}
                    <li>
                        {{ tree(ChildCategory) }}
                    </li>
                {% endfor %}
            </ul>
        {% endif %}
    {% endmacro %}
    {% from _self import tree %}
    
                <ul class="ak-product_list">
                    {% for Category in Categories %}
                        <li>
                            {{ tree(Category) }}
                        </li>
                    {% endfor %}
                </ul>
            </div>
            <div class="ak-footer footer3">
                <ul class="ak-contents_list">
                    <li><a href="{{ url('homepage') }}history">ヒストリー</a></li>
                    <li><a href="{{ url('homepage') }}concept">コンセプト</a></li>
                    <li><a href="{{ url('homepage') }}shop">取り扱い店舗</a></li>
                    <li><a href="{{ url('homepage') }}quality">品質への取り組み</a></li>
                    <li><a href="{{ url('homepage') }}manual">組み立てマニュアル</a></li>
                </ul>
            </div>
            <div class="ak-footer footer4">
                <ul class="ak-contents_list">
                    <li><a href="{{ url('mypage') }}">マイページ</a></li>
                    <li><a href="{{ url('homepage') }}help/agreement">利用規約と注文方法</a></li>
                    {# <li><a href="{{ url('homepage') }}userguide">利用規約</a></li> #}
                    <li><a href="{{ url('homepage') }}faq">よくある質問</a></li>
                    <li><a href="{{ url('contact') }}">お問い合わせ</a></li>
                    <li><a href="{{ url('homepage') }}help/tradelaw">特定商取引法について</a></li>
                    <li><a href="{{ url('homepage') }}help/privacy">プライバシーポリシー</a></li>
                    <li><a href="https://www.tekwind.co.jp/company/profile.php" target="_blank">運営会社</a></li>
                </ul>
            </div>
            <div class="ec-footerTitle">
                <div class="ec-footerTitle__copyright">copyright (c) {{ BaseInfo.shop_name }} all rights reserved.</div>
            </div>
        </div>
    </div>