summaryrefslogtreecommitdiff
path: root/html
diff options
context:
space:
mode:
authorQuentin Aristote <quentin@aristote.fr>2023-02-23 18:04:20 +0100
committerQuentin Aristote <quentin@aristote.fr>2023-02-23 18:38:42 +0100
commitc48e260f85ea8f203e64cbc2a82ff774cf0b5a9f (patch)
treec09fca37e938a58da50b07c71f370392174c4378 /html
parent898040b8dd3257783292b9542ce863944e6cc6ea (diff)
add doctype
Diffstat (limited to 'html')
-rw-r--r--html/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/html/default.nix b/html/default.nix
index b68ad07..48ac8fa 100644
--- a/html/default.nix
+++ b/html/default.nix
@@ -9,7 +9,7 @@ let
as = "font";
};
in with html;
-html.html { lang = "en"; } [
+doctype "html" + html.html { lang = "en"; } [
(head [
# Basic page needs
(metaWith { charset = "utf-8"; })