{% for item in menu %} {% if item.visible %}
  • {% if item.icon %} {% endif %} {{ item.title }} {% if item.children %}
      {% for child in item.children %} {% if child.visible %}
    • {% if child.icon %} {% endif %} {{ child.title }}
    • {% endif %} {% endfor %}
    {% endif %}
  • {% endif %} {% endfor %}