app/template/bynoiezam/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. {% set Categories = repository('Eccube\\Entity\\Category').getList() %}
  9. {% macro tree(Category) %}
  10. {% if Category.id != 32 %}{#追加行#}
  11.     {% from _self import tree %}
  12.     <a href="{{ url('product_list') }}?category_id={{ Category.id }}">
  13.         {{ Category.name }}
  14.     </a>
  15.     {% if Category.children|length > 0 %}
  16.         <ul>
  17.             {% for ChildCategory in Category.children %}
  18.                 <li>
  19.                     {{ tree(ChildCategory) }}
  20.                 </li>
  21.             {% endfor %}
  22.         </ul>
  23.     {% endif %}
  24. {% endif %}{#追加行#}
  25. {% endmacro %}
  26. {# @see https://github.com/bolt/bolt/pull/2388 #}
  27. {% from _self import tree %}
  28. <div class="ec-categoryNaviRole">
  29.     <div class="ec-itemNav">
  30.         <h4>商品カテゴリー</h4>
  31.         <ul class="ec-itemNav__nav">
  32.             {# <li class="ec-itemNav__all"><a href="{{ url('product_list') }}?category_id=">全ての商品</a></li> #}
  33.             {% for Category in Categories %}
  34.                 <li>
  35.                     {{ tree(Category) }}
  36.                 </li>
  37.             {% endfor %}
  38.         </ul>
  39.     </div>
  40. </div>
  41. <!-- ▼左ナビバナー -->
  42. <div class="ec-banner2">
  43.     <a href="https://www.youtube.com/@noiezam" target="_blank" rel="noopener">
  44.     <img src="{{ asset('/html/user_data/TOP/leftside/Left-banner012.png') }}" alt="のいえあ侍 Youtube 動画"></a>
  45. <br><br>
  46.     <img src="{{ asset('/html/user_data/TOP/leftside/ELSA.jpg') }}" alt="エルザジャパン正規販売代理店"></a>
  47. <br><br>
  48.     <a tabindex="-1">
  49.     <img src="{{ asset('/html/user_data/TOP/leftside/wtwwtwtw.png') }}" alt="pixio ゲーミングモニター"></a>
  50. <br><br>
  51.     <a href="https://twitter.com/gajiro15" target="_blank" rel="noopener">
  52.     <img src="{{ asset('/html/user_data/TOP/leftside/gaji.jpg') }}" alt="ガジロー"></a>
  53. </div>
  54. <!-- ▲左ナビバナー -->