{{ config.title }}
    {% set top = get_section(path="_index.md") %} {%- for p in top.subsections -%} {%- set sub = get_section(path=p) -%} {%- set has_children = sub.subsections | length > 0 -%} {%- if has_children -%} {%- set sub_count = sub.subsections | length -%} {%- set col_width = 12 / sub_count -%}
  • {{ sub.title }}
      {%- for cp in sub.subsections -%} {%- set child = get_section(path=cp) -%}
      • {{ child.title }}
      • {%- for cpage in child.pages -%}
      • {{ cpage.title }}
      • {%- endfor -%}
    • {%- endfor -%}
  • {%- else -%}
  • {{ sub.title }}
  • {%- endif -%} {%- endfor -%}