diff options
-rw-r--r-- | templates/_defs.scm | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/templates/_defs.scm b/templates/_defs.scm index 765dc73..dc13581 100644 --- a/templates/_defs.scm +++ b/templates/_defs.scm @@ -31,18 +31,19 @@ ; BASE ------------------------------------------------------------------------ (define (base title body) - `(html - (@ (lang ,lang)) - (head - (meta (@ (charset "utf-8"))) - (meta (@ (name "viewport") - (content "width=device-width, initial-scale=1"))) - ,(style "/static/css/normalize.css") - ,(style "/static/css/style.css") - ,(style "/static/css/fonts.css") - ,(style "/static/css/extra-style.css") - (title ,title)) - (body ,body))) + `((@raw "<!DOCTYPE html>") + (html + (@ (lang ,lang)) + (head + (meta (@ (charset "utf-8"))) + (meta (@ (name "viewport") + (content "width=device-width, initial-scale=1"))) + ,(style "/static/css/normalize.css") + ,(style "/static/css/style.css") + ,(style "/static/css/fonts.css") + ,(style "/static/css/extra-style.css") + (title ,title)) + (body ,body)))) ; HEADER----------------------------------------------------------------------- |