{% for menu in menu_items %} {% if menu.type == 'menu' %}
  • {% if menu.children %}
      {% for child in menu.children %}
    • {{ child.name }}
    • {% endfor %}
    {% else %}
    {{ menu.name }}
    {% endif %}
  • {% elif menu.type == 'title' %} {{ menu.html|safe }} {% endif %} {% endfor %}