mirror of
https://github.com/snachodog/just-the-docs.git
synced 2025-04-04 03:01:23 -06:00
Fix nav disambiguation issues involving grandparents (#890)
- add an extra filter to children-list to fix #854 - strengthen condition for assignment to first_level_url Tested with Jekyll 3.9.2 and 4.2.2 Note: Jekyll 3.9.2 doesn't support `| where: "grand_parent: nil"`
This commit is contained in:
parent
146ab184d8
commit
a6f0452115
@ -67,9 +67,9 @@
|
||||
<a href="{{ node.url | relative_url }}" class="nav-list-link{% if page.url == node.url %} active{% endif %}">{{ node.title }}</a>
|
||||
{%- if node.has_children -%}
|
||||
{%- if node.child_nav_order == 'desc' -%}
|
||||
{%- assign children_list = pages_list | where: "parent", node.title | reverse -%}
|
||||
{%- assign children_list = pages_list | where: "parent", node.title | where_exp:"item", "item.grand_parent == nil" | reverse -%}
|
||||
{%- else -%}
|
||||
{%- assign children_list = pages_list | where: "parent", node.title -%}
|
||||
{%- assign children_list = pages_list | where: "parent", node.title | where_exp:"item", "item.grand_parent == nil" -%}
|
||||
{%- endif -%}
|
||||
<ul class="nav-list ">
|
||||
{%- for child in children_list -%}
|
||||
@ -119,7 +119,7 @@
|
||||
|
||||
{%- for node in pages_list -%}
|
||||
{%- if node.parent == nil -%}
|
||||
{%- if page.parent == node.title or page.grand_parent == node.title -%}
|
||||
{%- if page.grand_parent == node.title or page.parent == node.title and page.grand_parent == nil -%}
|
||||
{%- assign first_level_url = node.url | relative_url -%}
|
||||
{%- endif -%}
|
||||
{%- if node.has_children -%}
|
||||
|
Loading…
x
Reference in New Issue
Block a user