{% macro make_item_list(route, children_map) %}
    {% for item in children_map[route] %}
  1. {{ item.title }} {# {% if children_map[item.route] %} {{ make_item_list(item.route, children_map) }} {% endif %} #}
  2. {% endfor %}
{% endmacro %} {{ make_item_list(route, full_index) }}