* more bootstrap-related fixes, nearing completion

* version bumped to 4.0
This commit is contained in:
"Vincent Ambo ext:(%22) 2013-05-05 20:34:06 +02:00
parent 11a51f6abd
commit d7cce6cb41
3 changed files with 15 additions and 13 deletions

View file

@ -1,5 +1,5 @@
Name: TazBlog
Version: 3.5
Version: 4.0
Synopsis: Tazjin's Blog
License-file: LICENSE
Author: Vincent Ambo

View file

@ -138,7 +138,7 @@ $forall entry <- elist
<br>
#{linkText $ length $ comments entry}
#{cHead $ lang entry}
<div .span10>
<div .span10 .entry>
$if (isEntryMarkdown entry)
^{renderEntryMarkdown $ append " " $ btext entry}
$else
@ -159,7 +159,8 @@ $maybe links <- footerLinks
showLinks :: Maybe Int -> BlogLang -> Html
showLinks (Just i) lang = [shamlet|
$if ((>) i 1)
<div class="centerbox">
<div .row .text-center>
<div .span12>
<a href=#{nLink $ succ i}>#{backText lang}
\ -- #
<a href=#{nLink $ pred i}>#{nextText lang}
@ -169,7 +170,8 @@ showLinks (Just i) lang = [shamlet|
where
nLink page = T.concat ["/", show' lang, "/?page=", show' page]
showLinks Nothing lang = [shamlet|
<div class="centerbox">
<div .row .text-center>
<div .span12>
<a href=#{nLink}>#{backText lang}
|]
where

View file

@ -18,7 +18,7 @@ import BlogDB (BlogLang (..))
data BlogError = NotFound | DBError
version = "3.5"
version = "4.0"
allLang = [EN, DE]
@ -159,6 +159,6 @@ rightText DE = "English version <a href=\"/en\" class=\"link\">available here</a
rightText EN = "Deutsche Version <a href=\"/de\" class=\"link\">hier verf&uuml;gbar</a>."
-- static information
repoURL :: Text = "https://bitbucket.org/tazjin/tazblog-haskell"
repoURL :: Text = "http://hg.tazj.in/tazblog-haskell"
mailTo :: Text = "mailto:tazjin+blog@gmail.com"
twitter :: Text = "http://twitter.com/#!/tazjin"