{% macro toc_item(item) %}
{%- if item.level <= config.theme.navigation_depth %}
{{ item.title }}
{% if item.children %}
{%- for child in item.children %}
{{- toc_item(child) }}
{%- endfor %}
{% endif %}
{%- endif %}
{%- endmacro %}
{%- for item in page.toc %}
{{ toc_item(item) }}
{%- endfor %}