diff options
author | Vincent Ambo <tazjin@gmail.com> | 2015-11-23T15·36+0100 |
---|---|---|
committer | Vincent Ambo <tazjin@gmail.com> | 2015-11-23T15·36+0100 |
commit | 35dba3b2114248dabe23a3ad2a177b4de909994f (patch) | |
tree | a0439f7448ad4fbb9bbace9ec9e01daa5fbf32b3 /src | |
parent | 6138a8b0f8bd57c8793e8cfd1ee0da5d76a472d6 (diff) |
[5.1.1] Add meta-description tag
Diffstat (limited to 'src')
-rw-r--r-- | src/Blog.hs | 1 | ||||
-rw-r--r-- | src/Locales.hs | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/Blog.hs b/src/Blog.hs index ee87cf8d5fa8..f35e3d90801f 100644 --- a/src/Blog.hs +++ b/src/Blog.hs @@ -29,6 +29,7 @@ $doctype 5 <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> + <meta name="description" content=#{blogTitle lang t_append}> <link rel="stylesheet" type="text/css" href="/static/blog.css" media="all"> <link rel="alternate" type="application/rss+xml" title="RSS-Feed" href=#{rssUrl}> <title>#{blogTitle lang t_append} diff --git a/src/Locales.hs b/src/Locales.hs index b0467d76dc51..92acb215f8c0 100644 --- a/src/Locales.hs +++ b/src/Locales.hs @@ -8,7 +8,7 @@ import Network.URI data BlogError = NotFound | UnknownError -version = "5.1" +version = "5.1.1" blogTitle :: BlogLang -> Text -> Text blogTitle DE s = T.concat ["Tazjins blog", s] |