{% macro input(sitemap, context) -%}
{%- for item, next_sitemap in sitemap.items() %}
{% if next_sitemap and next_sitemap.nodes %}
{{ item.title|e }}
{{ input(next_sitemap, context) }}
{% else %}
{{ item.title|e }}
{% endif %}
{%- endfor %}
{%- for item in sitemap.nodes %}
{{ item.title|e }}
{%- endfor %}
{%- endmacro %}
{{ input(sitemap, context) }}