Revert "Optional delay of grandchildren link display"

This reverts commit 8ac545a5eb.
This commit is contained in:
Peter Mosses
2019-08-29 14:42:23 +02:00
parent 8a1e09ec5a
commit 5b74b44230
3 changed files with 0 additions and 19 deletions

View File

@@ -20,7 +20,6 @@
{%- endif -%}
<a href="{{ child.url | absolute_url }}" class="navigation-list-link{% if page.url == child.url %} active{% endif %}">{{ child.title }}</a>
{%- if child.has_children -%}
{%- if page.url == child.url or page.parent == child.title or site.grandchildren_branch != true -%}
{%- assign grand_children_list = site.html_pages | where: "parent", child.title | sort:"nav_order" -%}
<ul class="navigation-list-child-list">
{%- for grand_child in grand_children_list -%}
@@ -30,7 +29,6 @@
{%- endfor -%}
</ul>
{%- endif -%}
{%- endif -%}
</li>
{%- endfor -%}
</ul>