templates/front/catalog/category/tree.html.twig line 1

Open in your IDE?
  1. {% import "macros/tree.html.twig" as macros %}
  2. <div class="tree">
  3. <a href="{{ path('universe', {id:category.id, url:category.url}) }}" class="universe"><- {{ category.name }}</a>
  4. {% if category.children|length > 0 %}
  5. {{ macros.tree(category.children, path, current) }}
  6. {% endif %}
  7. </div>