Specify the language on the html tag

Rather than using a meta tag, apparently this is better.
This commit is contained in:
Christopher Baines 2020-04-08 17:40:20 +01:00
parent 1b197884d0
commit 0b9098981a

View file

@ -67,11 +67,11 @@
(title "Guix Data Service"))
`((doctype "html")
(html
(@ (lang "en"))
(head
(title ,title)
(meta (@ (http-equiv "Content-Type")
(content "text/html; charset=UTF-8")))
(meta (@ (http-equiv "Content-Language") (content "en")))
(meta (@ (name "author") (content "Christopher Baines")))
(meta (@ (name "viewport")
(content "width=device-width, initial-scale=1")))