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