14 lines
397 B
HTML
14 lines
397 B
HTML
{% macro make_item_list(route, children_map) %}
|
|
<ol>
|
|
{% for item in children_map[route] %}
|
|
<li>
|
|
<a href="{{ url_prefix }}{{ item.route }}">{{ item.title }}</a>
|
|
{% if children_map[item.route] %}
|
|
{{ make_item_list(item.route, children_map) }}
|
|
{% endif %}
|
|
</li>
|
|
{% endfor %}
|
|
</ol>
|
|
{% endmacro %}
|
|
|
|
{{ make_item_list(route, full_index) }}
|