app/template/anivbtob/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.     {% 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">
  27.     <div class="ec-itemNav" style = "font-weight:100;">
  28.         <ul class="ec-itemNav__nav">
  29.             {% for Category in Categories %}
  30.                 <li>
  31.                     {{ tree(Category) }}
  32.                 </li>
  33.             {% endfor %}
  34.             <li style = "padding:0 .2em; border:1px solid #ccc;">
  35.                 <a href="{{ url('user_data', {'route': 'business'}) }}">スタジオ様振袖リースのご案内</a>
  36.             </li>
  37.             <li style = "margin-left:1em;padding:0 .2em; border:1px solid #ccc;">
  38.                 <a href="{{ url('contact') }}">会員登録お申し込み</a>
  39.             </li>
  40.     
  41.         </ul>
  42.     </div>
  43. </div>