diff options
author | David Thompson <dthompson2@worcester.edu> | 2024-07-07 07:52:34 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2024-07-07 07:53:39 -0400 |
commit | 35cb15da1177c6bd348f80b29e131035bb89e7ff (patch) | |
tree | 2cb1745b83600353fbb07ea699b9d265332fc5cc /theme.scm | |
parent | 8bbe94147b8761449c0dea9a16f792d71203776e (diff) |
theme: Change unicode arrows.
Diffstat (limited to 'theme.scm')
-rw-r--r-- | theme.scm | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -122,7 +122,7 @@ free culture works available under the " ,%cc-by-sa-link " license.") "~B ~d, ~Y")) (div (@ (class "post")) ,(first-paragraph post)) - (a (@ (href ,uri)) "read more ➔")))) + (a (@ (href ,uri)) "read more →")))) posts))) #:pagination-template (lambda (site body previous-page next-page) @@ -130,11 +130,11 @@ free culture works available under the " ,%cc-by-sa-link " license.") (div (@ (class "paginator")) ,(if previous-page `(a (@ (class "paginator-prev") (href ,previous-page)) - "🡐 Newer") + "← Newer") '()) ,(if next-page `(a (@ (class "paginator-next") (href ,next-page)) - "Older 🡒") + "Older →") '())))))) (define (flat-page-template site metadata body) |