app/template/default/Block/category_nav_pc.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 stylesheet %}
  9.     <style>
  10.         {# li ul li div:nth-child(1) {
  11.             display:none;
  12.         } #}
  13.     </style>
  14. {% endblock %}
  15. {% set Categories = repository('Eccube\\Entity\\Category').getList() %}
  16. {% macro tree(Category) %}
  17.     {% from _self import tree %}
  18.     <a href="{{ url('product_list') }}?category_id={{ Category.id }}" class="l-categorynav_list_pc brandIconImg fs18">
  19.         <span id="category_icon_pc_{{ Category.id }}" class="l-categorynav_title fs18">{{ Category.name }}</span>
  20.     </a>
  21.     {% if Category.children|length > 0 %}
  22.     <ul>
  23.         <li>
  24.             {% for ChildCategory in Category.children %}
  25.             {% if ChildCategory.id is not same as(149) %}
  26.                 <div>
  27.                     {{ tree(ChildCategory) }}
  28.                 </div>
  29.                 {% endif %}
  30.             {% endfor %}
  31.         </li>
  32.         </ul>
  33.     {% endif %}
  34. {% endmacro %}
  35. {# @see https://github.com/bolt/bolt/pull/2388 #}
  36. {% from _self import tree %}
  37. <div class="ec-itemNav displayPc">
  38.     <ul class="ec-itemNav__nav">
  39.         {% for Category in Categories %}
  40.         
  41.             <li class="categoryList">
  42.               {{ tree(Category) }}
  43.             </li>
  44.             
  45.         {% endfor %}
  46.             {# <li>
  47.                 <a href="#" class="fs14 piNone">ガイド</a>
  48.                 <ul>
  49.                     <li>
  50.                         <a href="https://frontlines.jp/about-frontline/" class="fs14">フロントラインについて</a>
  51.                     </li>
  52.                     <li>
  53.                         <a href="https://frontlines.jp/guide/" class="fs14">ご利用ガイド</a>
  54.                     </li>
  55.                 </ul>
  56.             </li> #}
  57.             <li>
  58.                 <a href="https://shichiyo.co.jp/contact/?source=1" class="fs18">お問い合わせ</a>
  59.             </li>
  60.             <li>
  61.                 <a href="{{url('faq')}}" class="fs18">FAQ</a>
  62.             </li>
  63.             <li>
  64.                 <a href="https://fix.customer-support.shop/" class="fs18">修理受付</a>
  65.             </li>
  66.             <li>
  67.                 <a href="https://shichiyo.co.jp/newtransaction/" class="fs18">新規お取引</a>
  68.             </li>
  69.     </ul>
  70. </div>
  71. {{ include('JoolenCategoryIcon4/Resource/template/default/category_icon_pc.twig', ignore_missing = true) }}