diff options
Diffstat (limited to 'jakob')
| -rw-r--r-- | jakob/utils/pagination.scm | 8 |
1 files changed, 6 insertions, 2 deletions
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"))) |