app/template/million01/Block/category_nav_pc.twig line 11

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. {% set Categories = repository('Eccube\\Entity\\Category').getList() %}
  9. {% macro tree(Category) %}
  10. {% from _self import tree %}
  11. <a href="{{ url('product_list') }}?category_id={{ Category.id }}">
  12.     {{ Category.name }}
  13. </a>
  14. {% if Category.children|length > 0 %}
  15. <ul>
  16.     {% for ChildCategory in Category.children %}
  17.     <li>
  18.         {{ tree(ChildCategory) }}
  19.     </li>
  20.     {% endfor %}
  21. </ul>
  22. {% endif %}
  23. {% endmacro %}
  24. {# @see https://github.com/bolt/bolt/pull/2388 #}
  25. {% from _self import tree %}
  26. <div class="ec-categoryNaviRole header">
  27.     <div class="header-nav-local">
  28.         <ul>
  29.             <li><a href="/about">はじめての方</a></li>
  30.             <li><a href="/shopping-guide">ご利用ガイド</a></li>
  31.             <li><a href="/shopping-guide/mypage">マイページ設定方法</a></li>
  32.             <li><a href="/faq">よくある質問</a></li>
  33.             <li><a href="/sitemap">サイトマップ</a></li>
  34.         </ul>
  35.     </div>
  36.     <nav class="header-nav-main">
  37.         <ul>
  38.             <li>
  39.                 <a href="/">トップ</a>
  40.             </li>
  41.             <li class="ico_new">
  42.                 <a href="/products/list">商品一覧</a>
  43.             </li>
  44.             <li class="ico_new">
  45.                 <a href="/campaign">キャンペーン</a>
  46.             </li>
  47.             <li>
  48.                 <a href="/useful">お役立ち情報</a>
  49.             </li>
  50.             <li>
  51.                 <a href="/shopping-guide/regular">お得な定期</a>
  52.             </li>
  53.         </ul>
  54.     </nav>
  55. </div>