diff options
Diffstat (limited to 'src/Blog.hs')
-rw-r--r-- | src/Blog.hs | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/Blog.hs b/src/Blog.hs index 10b118861568..d3382357fc2b 100644 --- a/src/Blog.hs +++ b/src/Blog.hs @@ -46,7 +46,7 @@ $doctype 5 <div class="header"> <a class="btitle" href=#{append "/" (show' lang)}>#{blogTitle lang empty} <p style="clear: both;"> - <span class="contacts" id="cosx">^{contactInfo iMessage} + <span class="contacts" id="cosx">^{contactInfo} <span class="righttext">^{preEscapedToHtml $ rightText lang} <div class="middle"> ^{body} @@ -57,14 +57,11 @@ $doctype 5 |] where rssUrl = T.concat ["/", show' lang, "/rss.xml"] - contactInfo imu = [shamlet| + contactInfo = [shamlet| #{contactText lang} <a class="link" href=#{mailTo}>Mail -, # -<a class="link" href=#{twitter} target="_blank">Twitter #{orText lang} -<a class="link" href=#{imu}>iMessage -. +<a class="link" href=#{twitter} target="_blank">Twitter |] showFooter :: BlogLang -> Text -> Html |