navigation.html.twig 637 B

12345678910111213141516171819202122232425
  1. {% macro nav_loop(page) %}
  2. {% for p in page.children.visible %}
  3. {% set active_page = (p.active or p.activeChild) ? 'active' : '' %}
  4. {% if p.children.visible.count > 0 %}
  5. <li>
  6. <a href="{{ p.url }}" class="{{ active_page }}">
  7. {{ p.menu }}
  8. </a>
  9. </li>
  10. {% else %}
  11. <li>
  12. <a href="{{ p.url }}" class="{{ active_page }}">
  13. {{ p.menu }}
  14. </a>
  15. </li>
  16. {% endif %}
  17. {% endfor %}
  18. {% endmacro %}
  19. <ul {{ tree ? 'class="tree"' : '' }}>
  20. {{ _self.nav_loop(pages) }}
  21. </ul>