From d44303ae99b4e129ee27af4a05996af5b1a5aacc Mon Sep 17 00:00:00 2001 From: Michael Vitz Date: Thu, 11 Dec 2014 12:23:26 +0100 Subject: [PATCH] Add charset definition to HTML pages Specifying the charset prevents the browser from guessing the charset to use. Relates to #130. --- src/statuses/views/layout.clj | 1 + 1 file changed, 1 insertion(+) diff --git a/src/statuses/views/layout.clj b/src/statuses/views/layout.clj index 934a8a0..f679677 100644 --- a/src/statuses/views/layout.clj +++ b/src/statuses/views/layout.clj @@ -27,6 +27,7 @@ ([title username content footer] (html5 [:head + [:meta {:charset "utf-8"}] [:meta {:name "viewport" :content "width=device-width, initial-scale=1.0, maximum-scale=1, user-scalable=no"}] [:title (str title " - innoQ Statuses")]