From: Javier Sancho Date: Mon, 26 Feb 2018 16:06:34 +0000 (+0100) Subject: Merge branch 'master' into english X-Git-Url: https://git.jsancho.org/?p=blog.git;a=commitdiff_plain;h=16b2c33322417be6d88ecb431116c8fcdd0677d1;hp=3ae82e7780aeacd88854dba6294732a9d6f62257 Merge branch 'master' into english --- diff --git a/css/custom.css b/css/custom.css index 2ea042a..4fb0c9f 100644 --- a/css/custom.css +++ b/css/custom.css @@ -9,3 +9,8 @@ #page-content > section[role="main"] a { color: #e95420; } + +.image-left { + float: left; + margin: 0px 15px 15px 0px; +} diff --git a/haunt.scm b/haunt.scm index 6c83826..0a6fa50 100644 --- a/haunt.scm +++ b/haunt.scm @@ -33,9 +33,13 @@ `(" " (span (@ (style "margin: 0 3px")) ⦿) (span (@ (class "tags")) - ,@(map (lambda (tag) - `((a (@ (href ,(format #f "tags/~a.html" tag))) ,tag) " ")) - tags))))) + ,@(drop-right + (apply + append + (map (lambda (tag) + `((a (@ (href ,(format #f "tags/~a.html" tag))) ,tag) ", ")) + tags)) + 1))))) (else div))))