diff options
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) |