{% block menu_navigation %} {% macro loop(page) %} {% for p in page.children %} {% if p.visible %} {% set current_page = (p.active or p.activeChild) ? 'active' : '' %}
  • {% if p.routable == false and p.children.count > 0%} {% if p.header.icon %}{% endif %} {{ p.menu }} {% elseif p.routable != false and p.children.count > 0 %} {% if p.header.icon %}{% endif %} {{ p.menu }} {% else %} {% if p.header.icon %}{% endif %} {{ p.menu }} {% endif %}
  • {% endif %} {% endfor %} {% endmacro %} {% endblock %}