{% for menu in items.items %}
{% if menu.slug == "main_menu" %}
{% set count = 1 %}
{% for item in menu.items %}
{% if item.page.status == 'published' %}
-
{{ item.label }}
{% if item.children|length > 0 %}
{{ render_sitemap_children(item.children, count) }}
{% endif %}
{% endif %}
{% endfor %}
{% else %}
{% for item in menu.items %}
{% if item.page.status == 'published' %}
- {{ item.label }}
{% endif %}
{% endfor %}
- Sisu
{% endif %}
{% endfor %}