From db0d16e5b5782f3c59dbc7163c3d3232c327c0e9 Mon Sep 17 00:00:00 2001 From: Rohan Kumar Date: Wed, 5 Jan 2022 16:00:09 -0800 Subject: [PATCH] Fix next/prev links to be same-section next/prev links for posts shouldn't navigate to non-post pages like "about" and "resume". --- layouts/posts/single.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/layouts/posts/single.html b/layouts/posts/single.html index e513bb8..7b2725e 100644 --- a/layouts/posts/single.html +++ b/layouts/posts/single.html @@ -24,9 +24,9 @@

-{{- if .Prev -}}Previous{{- end -}} -{{- if and (.Prev) (.Next) }} · {{ end -}} -{{- if .Next -}}Next{{- end -}} +{{- if .PrevInSection -}}Previous{{- end -}} +{{- if and (.PrevInSection) (.NextInSection) }} · {{ end -}} +{{- if .NextInSection -}}Next{{- end -}}