From d5d49aee67b19dc24f87222f9f92dae196df9560 Mon Sep 17 00:00:00 2001 From: Nathaniel Suchy Date: Sat, 29 Dec 2018 14:14:28 -0500 Subject: minor syntax changes --- src/pronouns/pages.clj | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/pronouns/pages.clj b/src/pronouns/pages.clj index 283a34b..3e4e76f 100644 --- a/src/pronouns/pages.clj +++ b/src/pronouns/pages.clj @@ -111,7 +111,7 @@ (href "https://www.gnu.org/licenses/agpl.html" "AGPLv3") "! visit the project on " (href "https://github.com/witch-house/pronoun.is" "github")] - [:p "<3"]])) + [:p "<3"]])) (defn footer-block [] [:footer (usage-block) (contact-block)]) @@ -126,6 +126,7 @@ [:head [:title title] [:meta {:name "viewport" :content "width=device-width"}] + [:meta {:charset "utf-8"}] [:meta {:name "description" :content (u/strip-markup examples)}] [:meta {:name "twitter:card" :content "summary"}] [:meta {:name "twitter:title" :content title}] @@ -164,6 +165,7 @@ [:head [:title title] [:meta {:name "viewport" :content "width=device-width"}] + [:meta {:charset "utf-8"}] [:link {:rel "stylesheet" :href "/pronouns.css"}]] [:body (header-block title) @@ -183,6 +185,7 @@ [:head [:title title] [:meta {:name "viewport" :content "width=device-width"}] + [:meta {:charset "utf-8"}] [:link {:rel "stylesheet" :href "/pronouns.css"}]] [:body (header-block title) @@ -199,6 +202,7 @@ [:head [:title title] [:meta {:name "viewport" :content "width=device-width"}] + [:meta {:charset "utf-8"}] [:link {:rel "stylesheet" :href "/pronouns.css"}]] [:body (header-block title) -- cgit