src/Eccube/Resource/template/default/Block/category_nav_sp.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. {% macro tree(Category) %}
  9.     {% from _self import tree %}
  10.     {% set category = attribute(Category, 'category') %}
  11.     {% set children = attribute(Category, 'children') %}
  12.     <a href="{{ url('product_list') }}?category_id={{ category.id }}">
  13.         {{ category.name }}
  14.     </a>
  15.     {% if children|length > 0 %}
  16.         <ul>
  17.             {% for child in children %}
  18.                 <li>
  19.                     {{ tree(child) }}
  20.                 </li>
  21.             {% endfor %}
  22.         </ul>
  23.     {% endif %}
  24. {% endmacro %}
  25. {# @see https://github.com/bolt/bolt/pull/2388 #}
  26. {% from _self import tree %}
  27. <div class="ec-headerCategoryArea">
  28.     <div class="ec-headerCategoryArea__heading">
  29.         <p>{{ 'front.block.category.list'|trans }}</p>
  30.     </div>
  31.     <div class="ec-itemNav">
  32.         <ul class="ec-itemNav__nav">
  33.             {% for Category in displayableCategories %}
  34.                 <li>
  35.                     {{ tree(Category) }}
  36.                 </li>
  37.             {% endfor %}
  38.         </ul>
  39.     </div>
  40. </div>