vendor/knplabs/knp-menu/src/Knp/Menu/Resources/views/knp_menu_ordered.html.twig line 1

Open in your IDE?
  1. {% extends 'knp_menu.html.twig' %}
  2. {% block list %}
  3. {% import 'knp_menu.html.twig' as macros %}
  4. {% if item.hasChildren and options.depth is not same as(0) and item.displayChildren %}
  5.     <ol{{ macros.attributes(listAttributes) }}>
  6.         {{ block('children') }}
  7.     </ol>
  8. {% endif %}
  9. {% endblock %}