{% for item in menuLinks.findAll %}
  • {{ item.name }} {% if item.children %} {% endif %} {% if item.children %}
      {% for item in item.children %}
    • {{ item.name }}
    • {% endfor %}
    {% endif %}
  • {% endfor %}