{% unless page.url == "/" %}
{% if page.parent %}
{% if site.heading_anchors != nil %}
{% include vendor/anchor_headings.html html=content beforeHeading = "true" anchorBody="
" anchorClass="anchor-heading" %}
{% else %}
{{ content }}
{% endif %}
{% if page.has_children == true and page.has_toc != false %}
Table of contents
{% assign children_list = site.pages | sort:"nav_order" %}
{% for child in children_list %}
{% if child.parent == page.title and child.title != page.title %}
-
{{ child.title }}
{% endif %}
{% endfor %}
{% endif %}