X-Git-Url: https://git.jsancho.org/?p=blog.git;a=blobdiff_plain;f=haunt.scm;h=04bada489e51b58ffe5890f08a236a0bb8612dc8;hp=4aa7485c593dbedc7d867ef840fbb3faadd8eb3f;hb=f2e6be89d151a9fd53ab043e5d9a939dc3463990;hpb=cc0b9bf6f1a55467f0b836b3c89bed1943d79400 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))))))