From 0c7c0c403d7af99ccc4a740f0ee27200c54a7066 Mon Sep 17 00:00:00 2001 From: Will Faught Date: Wed, 26 Jun 2024 20:49:10 -0700 Subject: [PATCH] Fix order of next, prev page links --- layouts/partials/paige/footer.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/layouts/partials/paige/footer.html b/layouts/partials/paige/footer.html index 95277863..9ff20a1f 100644 --- a/layouts/partials/paige/footer.html +++ b/layouts/partials/paige/footer.html @@ -24,15 +24,15 @@ {{ if or $page.PrevInSection $page.NextInSection }}
- {{ if $page.PrevInSection }} + {{ with $page.NextInSection }}

- ← {{ $page.PrevInSection.Title }} + ← {{ .Title }}

{{ end }} - {{ if $page.NextInSection }} + {{ with $page.PrevInSection }}

- {{ $page.NextInSection.Title }} → + {{ .Title }}

{{ end }}