{%- if page.extra.toc_ordered or section.extra.toc_ordered or config.extra.toc_ordered -%} {%- set list_element = "ol" -%} {%- else -%} {%- set list_element = "ul" -%} {%- endif -%} {%- if page.toc -%} {%- set toc = page.toc -%} {%- elif section.toc -%} {%- set toc = section.toc -%} {%- endif -%} {%- if page.extra.toc or section.extra.toc -%} {%- if toc | length > 0 -%}

{{ macros_translate::translate(key="toc", default="Table of Contents", language_strings=language_strings) }}

<{{ list_element }}> {%- for h1 in toc -%}
  • {{ h1.title }} {%- if h1.children -%} <{{ list_element }}> {%- for h2 in h1.children -%}
  • {{ h2.title }}
  • {%- endfor -%} {%- endif -%} {%- endfor -%} {%- endif -%} {%- endif -%}