commit e091322d203a75dcfcb062c4baf80f86121ecad8
parent 88a7fe7f703358048b01c341ef3a19a740969140
Author: Adriel Dumas--Jondeau <leirda@disroot.org>
Date: Sun, 23 Jun 2024 16:54:04 +0200
Set character encoding first because Firefox told me to do so
Diffstat:
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/haunt.scm b/haunt.scm
@@ -58,14 +58,13 @@
(define (duper-layout site title body)
`((doctype "html")
- (head (title ,title))
-
- (meta (@ (name "description")
- (content ,title)))
(meta (@ (charset "utf-8")))
(meta (@ (name "viewport")
(content "width=device-width, initial-scale=1")))
+ (meta (@ (name "description") (content ,title)))
+ (head (title ,title))
+
(link (@ (rel "stylesheet")
(href "/css/duper.css")))
(link (@ (rel "icon")