sous-nav.html.twig 346 B

123456789101112
  1. {% set options = { items: {'@page.children': blog.url }, 'order': {'by': 'title', 'dir': 'asc'} } %}
  2. <ul>
  3. {% for p in blog.collection(options) %}
  4. {% set active_page = (p.active or p.activeChild) ? 'active' : '' %}
  5. <li>
  6. <a href="{{ p.url }}" class="{{ active_page }}">
  7. {{ p.menu }}
  8. </a>
  9. </li>
  10. {% endfor %}
  11. </ul>