{% macro input(sitemap, context) -%} {%- for item, next_sitemap in sitemap.items() %}
    1. {{ input(next_sitemap, context) }}
  • {%- endfor %} {%- for item in sitemap.keys() %}
  • {{ item.title }}
  • {%- endfor %} {%- for item in sitemap.nodes %}
  • {{ item.title }}
  • {%- endfor %} {%- endmacro %}
      {{ input(sitemap, context) }}