doctype was backwards
This commit is contained in:
@@ -14,7 +14,9 @@
|
|||||||
(defn html-page [hiccup]
|
(defn html-page [hiccup]
|
||||||
{:status 200
|
{:status 200
|
||||||
:headers {"Content-Type" "text/html"}
|
:headers {"Content-Type" "text/html"}
|
||||||
:body (str (hiccup/html
|
:body (str
|
||||||
|
"<!DOCTYPE html>"
|
||||||
|
(hiccup/html
|
||||||
{}
|
{}
|
||||||
hiccup))})
|
hiccup))})
|
||||||
|
|
||||||
@@ -81,7 +83,6 @@
|
|||||||
{:status 200
|
{:status 200
|
||||||
:headers {"Content-Type" "text/html"}
|
:headers {"Content-Type" "text/html"}
|
||||||
:body (str
|
:body (str
|
||||||
"<!DOCTYPE html>"
|
|
||||||
(hiccup/html
|
(hiccup/html
|
||||||
{}
|
{}
|
||||||
hiccup))})
|
hiccup))})
|
||||||
|
|||||||
Reference in New Issue
Block a user