about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorVincent Ambo <v.ambo@me.com>2012-03-22T19·58+0100
committerVincent Ambo <v.ambo@me.com>2012-03-22T19·58+0100
commit87924c405dd6b321f3ba79e02ef89e4b37dd3387 (patch)
tree8855577764faa620951154daced5cb91d0b0f3ba /src
parentac1a4ddcb0ab107fbe8e1901ef0d72a11ca69a9d (diff)
version 3.1.1:
* added background texture for .middle
* removed accidental </br> which caused W3 validation to fail

New design is now complete.

--HG--
rename : res/ios-linen.jpg => res/hbg.jpg
Diffstat (limited to 'src')
-rw-r--r--src/Blog.hs4
-rw-r--r--src/Locales.hs2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/Blog.hs b/src/Blog.hs
index 7e719466a0..a9707fa07f 100644
--- a/src/Blog.hs
+++ b/src/Blog.hs
@@ -43,7 +43,7 @@ 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/blogv31.css" ! A.media "all"
+        H.link ! A.rel "stylesheet" ! A.type_ "text/css" ! A.href "/static/blogv311.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
@@ -88,7 +88,7 @@ renderEntries showAll entries topText footerLinks = do
             when ( mtext e /= T.empty ) $
                 H.p $ entryLink e $ readMore $ lang e
             unless ( mtext e /= T.empty ) $
-                preEscapedText "<br>&nbsp;</br>"
+                preEscapedText "<br>&nbsp;"
         entryLink :: Entry -> Text -> Html
         entryLink e s = H.a ! A.href (toValue $ concat $ intersperse' "/" $ linkElems e) $
                         toHtml (T.concat ["[", s, "]"])
diff --git a/src/Locales.hs b/src/Locales.hs
index b73321f4f6..a3adaa5179 100644
--- a/src/Locales.hs
+++ b/src/Locales.hs
@@ -13,7 +13,7 @@ import    BlogDB (BlogLang (..))
 
 data BlogError = NotFound | DBError
 
-version = "3.1"
+version = "3.1.1"
 
 allLang = [EN, DE]