Fixed table of children

This commit is contained in:
Silvio Giebl 2020-06-15 23:00:53 +02:00
parent 51f15965f2
commit ed618caf70

View File

@ -100,13 +100,11 @@ layout: table_wrappers
<hr> <hr>
<h2 class="text-delta">Table of contents</h2> <h2 class="text-delta">Table of contents</h2>
<ul> <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 %} {% for child in children_list %}
{% if child.parent == page.title and child.title != page.title and child.grand_parent == page.parent %} <li>
<li> <a href="{{ child.url | absolute_url }}">{{ child.title }}</a>{% if child.summary %} - {{ child.summary }}{% endif %}
<a href="{{ child.url | absolute_url }}">{{ child.title }}</a>{% if child.summary %} - {{ child.summary }}{% endif %} </li>
</li>
{% endif %}
{% endfor %} {% endfor %}
</ul> </ul>
{% endif %} {% endif %}