aboutsummaryrefslogtreecommitdiff
path: root/module
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@hornquist.se>2019-12-27 23:25:53 +0100
committerHugo Hörnquist <hugo@hornquist.se>2019-12-27 23:25:53 +0100
commitab492792971ccefaea95908deef4bc9d207f730e (patch)
tree0353cccc1270c110c31347fa65c4bb9722db043d /module
parentCSS Fix gradients for whole day events. (diff)
downloadcalp-ab492792971ccefaea95908deef4bc9d207f730e.tar.gz
calp-ab492792971ccefaea95908deef4bc9d207f730e.tar.xz
Minor fixups.
Diffstat (limited to 'module')
-rw-r--r--module/output/html.scm6
1 files changed, 3 insertions, 3 deletions
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)