Set page title on the homepage to the site-wide title
This commit is contained in:
parent
296fe2dcaf
commit
2b4822093a
1 changed files with 6 additions and 1 deletions
|
@ -11,4 +11,9 @@ import Widget.Hcard (hcard)
|
|||
getHomeR :: Handler Html
|
||||
getHomeR = do
|
||||
user <- runDB . getBy404 $ UniqueUsername "dani"
|
||||
defaultLayout $(widgetFile "home")
|
||||
maybeTitle <- asks $ appTitle . appSettings
|
||||
defaultLayout $ do
|
||||
case maybeTitle of
|
||||
Just title -> setTitle $ toHtml title
|
||||
Nothing -> return ()
|
||||
$(widgetFile "home")
|
||||
|
|
Loading…
Reference in a new issue