{{ wp_head }}
{% 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 %}
{{ wp_footer }}