about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorVincent Ambo <v.ambo@me.com>2012-03-23T02·20+0100
committerVincent Ambo <v.ambo@me.com>2012-03-23T02·20+0100
commit2738271e6733a9f24b4c09110ca98a0b56689f0f (patch)
tree682eca3a33e83f61a3d06c04ea89c20a32dd026d /src
parent87924c405dd6b321f3ba79e02ef89e4b37dd3387 (diff)
version 3.1.2:
* CSS changes for HsColour
Diffstat (limited to 'src')
-rw-r--r--src/Blog.hs3
-rw-r--r--src/Locales.hs2
2 files changed, 3 insertions, 2 deletions
diff --git a/src/Blog.hs b/src/Blog.hs
index a9707fa07fa7..3f1fe063cc03 100644
--- a/src/Blog.hs
+++ b/src/Blog.hs
@@ -43,7 +43,8 @@ blogTemplate lang t_append body = H.docTypeHtml $ do --add body
     H.head $ do
         H.title $ (toHtml $ blogTitle lang t_append)
         H.link ! A.rel "alternate" ! A.type_ "application/rss+xml" ! A.title "RSS-Feed" ! A.href "/rss"
-        H.link ! A.rel "stylesheet" ! A.type_ "text/css" ! A.href "/static/blogv311.css" ! A.media "all"
+        H.link ! A.rel "stylesheet" ! A.type_ "text/css" ! A.href "/static/blogv312.css" ! A.media "all"
+        --H.link ! A.rel "stylesheet" ! A.type_ "text/css" ! A.href "/res/blogstyle.css" ! A.media "all"
         H.meta ! A.httpEquiv "content-type" ! A.content "text/html;charset=UTF-8"
         --H.style ! A.type_ "text/css" ! A.title "iOS iMessage" ! A.media "screen and (max-device-width: 1024px)" $ "#cosx{display:none;}"
         preEscapedText analytics
diff --git a/src/Locales.hs b/src/Locales.hs
index a3adaa517976..fc072ed61cb7 100644
--- a/src/Locales.hs
+++ b/src/Locales.hs
@@ -13,7 +13,7 @@ import    BlogDB (BlogLang (..))
 
 data BlogError = NotFound | DBError
 
-version = "3.1.1"
+version = "3.1.2"
 
 allLang = [EN, DE]