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