From 56eec5858ba87df5c44c76546c0340675126a637 Mon Sep 17 00:00:00 2001 From: mlange-42 Date: Thu, 1 Sep 2022 14:46:38 +0200 Subject: [PATCH 01/13] show sub-pages in sidebar navigation when top-level page is selected --- layouts/partials/sidebar-tree.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/partials/sidebar-tree.html b/layouts/partials/sidebar-tree.html index 921fafd7..d2d4bd3f 100644 --- a/layouts/partials/sidebar-tree.html +++ b/layouts/partials/sidebar-tree.html @@ -25,7 +25,7 @@ {{ $p := .page }} {{ $shouldDelayActive := .delayActive }} {{ $active := eq $p.CurrentSection $s }} -{{ $show := or (and (not $p.Site.Params.ui.sidebar_menu_compact) ($p.IsAncestor $s)) ($p.IsDescendant $s) }} +{{ $show := or (and (not $p.Site.Params.ui.sidebar_menu_compact) ($p.IsAncestor $s)) ($p.IsDescendant $s) (eq $s.Parent $p.Parent) ($p.IsDescendant $s.Parent) }} {{ $sid := $s.RelPermalink | anchorize }}