From ab492792971ccefaea95908deef4bc9d207f730e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Fri, 27 Dec 2019 23:25:53 +0100 Subject: Minor fixups. --- module/output/html.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'module/output') diff --git a/module/output/html.scm b/module/output/html.scm index 3b5ed38c..242ee714 100644 --- a/module/output/html.scm +++ b/module/output/html.scm @@ -142,11 +142,11 @@ `(span (@ (id ,str) (class "daydate")) ,str)) (span (@ (class "dayname")) ,(date->string date "~a"))) (div (@ (class "wholeday")) - " " ; To prevent self closing div tag + "" ; To prevent self closing div tag ,@(map (lambda (e) (vevent->sxml-top date e)) long-events)) (div (@ (class "events")) - " " ; To prevent self closing div tag + "" ; To prevent self closing div tag ,@(map (lambda (time) `(div (@ (class "clock clock-" ,time)) "")) (iota 12 0 2)) @@ -306,7 +306,7 @@ (head (title "Calendar") (meta (@ (charset "utf-8"))) - (meta (@ (http-equiv "Content-Type")) "application/xhtml+xml") + (meta (@ (http-equiv "Content-Type") (content "application/xhtml+xml"))) (meta (@ (name viewport) (content "width=device-width, initial-scale=0.5"))) (meta (@ (name description) -- cgit v1.2.3