diff --git a/_layouts/default.html b/_layouts/default.html index 860efe6cbe5f188c28244c4cba3a1b71d53df6af..a40c0b79ecbde80bb05a980a0ee647ae48326031 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -100,13 +100,11 @@ layout: table_wrappers <hr> <h2 class="text-delta">Table of contents</h2> <ul> - {%- assign children_list = pages_list | where: "parent", node.title -%} + {%- assign children_list = pages_list | where: "parent", page.title | where: "grand_parent", page.parent -%} {% for child in children_list %} - {% if child.parent == page.title and child.title != page.title and child.grand_parent == page.parent %} - <li> - <a href="{{ child.url | absolute_url }}">{{ child.title }}</a>{% if child.summary %} - {{ child.summary }}{% endif %} - </li> - {% endif %} + <li> + <a href="{{ child.url | absolute_url }}">{{ child.title }}</a>{% if child.summary %} - {{ child.summary }}{% endif %} + </li> {% endfor %} </ul> {% endif %}