Merge pull request #97 from nsuchy/master
Specify an UTF-8 Charset and use an html special character to avoid a malformed tag error in the footer
This commit is contained in:
commit
569b64acba
@ -111,7 +111,7 @@
|
|||||||
(href "https://www.gnu.org/licenses/agpl.html" "AGPLv3")
|
(href "https://www.gnu.org/licenses/agpl.html" "AGPLv3")
|
||||||
"! visit the project on "
|
"! visit the project on "
|
||||||
(href "https://github.com/witch-house/pronoun.is" "github")]
|
(href "https://github.com/witch-house/pronoun.is" "github")]
|
||||||
[:p "<3"]]))
|
[:p "<3"]]))
|
||||||
|
|
||||||
(defn footer-block []
|
(defn footer-block []
|
||||||
[:footer (usage-block) (contact-block)])
|
[:footer (usage-block) (contact-block)])
|
||||||
@ -126,6 +126,7 @@
|
|||||||
[:head
|
[:head
|
||||||
[:title title]
|
[:title title]
|
||||||
[:meta {:name "viewport" :content "width=device-width"}]
|
[:meta {:name "viewport" :content "width=device-width"}]
|
||||||
|
[:meta {:charset "utf-8"}]
|
||||||
[:meta {:name "description" :content (u/strip-markup examples)}]
|
[:meta {:name "description" :content (u/strip-markup examples)}]
|
||||||
[:meta {:name "twitter:card" :content "summary"}]
|
[:meta {:name "twitter:card" :content "summary"}]
|
||||||
[:meta {:name "twitter:title" :content title}]
|
[:meta {:name "twitter:title" :content title}]
|
||||||
@ -164,6 +165,7 @@
|
|||||||
[:head
|
[:head
|
||||||
[:title title]
|
[:title title]
|
||||||
[:meta {:name "viewport" :content "width=device-width"}]
|
[:meta {:name "viewport" :content "width=device-width"}]
|
||||||
|
[:meta {:charset "utf-8"}]
|
||||||
[:link {:rel "stylesheet" :href "/pronouns.css"}]]
|
[:link {:rel "stylesheet" :href "/pronouns.css"}]]
|
||||||
[:body
|
[:body
|
||||||
(header-block title)
|
(header-block title)
|
||||||
@ -183,6 +185,7 @@
|
|||||||
[:head
|
[:head
|
||||||
[:title title]
|
[:title title]
|
||||||
[:meta {:name "viewport" :content "width=device-width"}]
|
[:meta {:name "viewport" :content "width=device-width"}]
|
||||||
|
[:meta {:charset "utf-8"}]
|
||||||
[:link {:rel "stylesheet" :href "/pronouns.css"}]]
|
[:link {:rel "stylesheet" :href "/pronouns.css"}]]
|
||||||
[:body
|
[:body
|
||||||
(header-block title)
|
(header-block title)
|
||||||
@ -199,6 +202,7 @@
|
|||||||
[:head
|
[:head
|
||||||
[:title title]
|
[:title title]
|
||||||
[:meta {:name "viewport" :content "width=device-width"}]
|
[:meta {:name "viewport" :content "width=device-width"}]
|
||||||
|
[:meta {:charset "utf-8"}]
|
||||||
[:link {:rel "stylesheet" :href "/pronouns.css"}]]
|
[:link {:rel "stylesheet" :href "/pronouns.css"}]]
|
||||||
[:body
|
[:body
|
||||||
(header-block title)
|
(header-block title)
|
||||||
|
Loading…
Reference in New Issue
Block a user