{% include "partials/_head.twig" %}
{% for item in menu.get_items %}
{{ item.title }}
{% if item.get_children %}
{% for child in item.get_children %}
{{ child.title }}
{% endfor %}
{% endif %} {% endfor %}
{% block content %}{% endblock %}
{% include "partials/_foot.twig" %}