From 5514bc9b5023f4a8e921b3ef70836c1c843248c4 Mon Sep 17 00:00:00 2001 From: "Jakob L. Kreuze" Date: Sat, 14 Feb 2026 10:13:43 -0500 Subject: Stylize pagination buttons --- jakob/utils/pagination.scm | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'jakob') diff --git a/jakob/utils/pagination.scm b/jakob/utils/pagination.scm index 9e6ff13..18ecfc3 100644 --- a/jakob/utils/pagination.scm +++ b/jakob/utils/pagination.scm @@ -71,9 +71,13 @@ PREVIOUS-PAGE and NEXT-PAGE." (nav (@ (id "pagination")) ,(when previous-page - (hyperlink previous-page "← Previous Page")) + `(a (@ (href ,previous-page) + (rel "prev")) + "← Previous Page")) ,(when next-page - (hyperlink next-page "Next Page →"))) + `(a (@ (href ,next-page) + (rel "next")) + "Next Page →"))) ,@(if enable-search `((link (@ (rel "stylesheet") (href "/_pagefind/pagefind-ui.css"))) -- cgit v1.3