87 | {% unless page.url == "/" %}
88 | {% if page.parent %}
89 |
103 | {% if site.heading_anchors != false %}
104 | {% include anchor_headings.html html=content beforeHeading="true" anchorBody="
" anchorClass="anchor-heading" %}
105 | {% else %}
106 | {{ content }}
107 | {% endif %}
108 |
109 | {% if page.has_children == true and page.has_toc != false %}
110 |
111 |
Table of contents
112 |
113 | {%- assign children_list = pages_list | where: "parent", page.title | where: "grand_parent", page.parent -%}
114 | {% for child in children_list %}
115 | -
116 | {{ child.title }}{% if child.summary %} - {{ child.summary }}{% endif %}
117 |
118 | {% endfor %}
119 |
120 | {% endif %}
121 |
122 | {% if site.footer_content != nil or site.last_edit_timestamp or site.gh_edit_link %}
123 |
124 |
153 | {% endif %}
154 |
155 |