From: Javier Sancho Date: Mon, 18 Dec 2017 16:32:48 +0000 (+0100) Subject: Changing to english X-Git-Url: https://git.jsancho.org/?p=blog.git;a=commitdiff_plain;h=f2e6be89d151a9fd53ab043e5d9a939dc3463990 Changing to english --- diff --git a/haunt.scm b/haunt.scm index 4aa7485..04bada4 100644 --- a/haunt.scm +++ b/haunt.scm @@ -6,7 +6,8 @@ (haunt reader texinfo) (haunt site) (haunt post) - (srfi srfi-1)) + (srfi srfi-1) + (srfi srfi-19)) (define (stylesheet name) `(link (@ (rel "stylesheet") @@ -57,7 +58,7 @@ `((article (@ (class "single")) (header (h1 ,(post-ref post 'title)) - (p ,(date->string* (post-date post)))) + (p "Posted on " ,(date->string (post-date post) "~B ~d, ~Y"))) ,(post-sxml post) (div (@ (class "tag-cloud")) (p @@ -88,10 +89,10 @@ (h2 (a (@ (href ,(post-uri post))) ,(post-ref post 'title))) - (p ,(date->string* (post-date post)))) + (p "Posted on " ,(date->string (post-date post) "~B ~d, ~Y"))) (div ,(post-summary post) (br) - (a (@ (class "btn") (href ,(post-uri post))) " Seguir leyendo ")) + (a (@ (class "btn") (href ,(post-uri post))) " Continue reading ")) (hr))) (posts/reverse-chronological posts))))))