version 3.3:
* added reCaptcha again (got too much spam)
This commit is contained in:
parent
5b80f528c7
commit
3e16a443e6
5 changed files with 59 additions and 15 deletions
|
|
@ -16,7 +16,7 @@ import BlogDB (BlogLang (..))
|
|||
|
||||
data BlogError = NotFound | DBError
|
||||
|
||||
version = "3.2"
|
||||
version = "3.3"
|
||||
|
||||
allLang = [EN, DE]
|
||||
|
||||
|
|
@ -28,6 +28,10 @@ blogTitle :: BlogLang -> Text -> Text
|
|||
blogTitle DE s = T.concat ["Tazjins Blog", s]
|
||||
blogTitle EN s = T.concat ["Tazjin's Blog", s]
|
||||
|
||||
showLangText :: BlogLang -> Text
|
||||
showLangText EN = "en"
|
||||
showLangText DE = "de"
|
||||
|
||||
-- index site headline
|
||||
topText DE = "Aktuelle Einträge"
|
||||
topText EN = "Latest entries"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue