From b783f11318991f28243719337a3c31fdf36d54e1 Mon Sep 17 00:00:00 2001 From: hossainemruz Date: Tue, 30 Jun 2020 00:38:40 +0600 Subject: [PATCH] Fix navbar issue when no section is configured + fix next-prev navigator --- layouts/_default/single.html | 8 ++++---- layouts/partials/navbar.html | 14 ++++++++------ 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/layouts/_default/single.html b/layouts/_default/single.html index 30dc63d..20558ba 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -46,9 +46,9 @@
{{ $currentPage := . }} - {{ range .Site.RegularPages.ByDate }} + {{ range (where site.RegularPages.ByDate "Type" "in" site.Params.mainSections )}} {{ if eq .RelPermalink $currentPage.RelPermalink }} - {{ if .Next }} + {{ if in site.Params.mainSections .Next.Type }} {{ end }} - {{ if .Prev }} -