forked from filipg/gonito
27 lines
864 B
Haskell
27 lines
864 B
Haskell
module Handler.Home where
|
|
|
|
import Import
|
|
import Yesod.Form.Bootstrap3 (BootstrapFormLayout (..), renderBootstrap3,
|
|
withSmallInput)
|
|
|
|
import Handler.Shared
|
|
|
|
-- This is a handler function for the GET request method on the HomeR
|
|
-- resource pattern. All of your resource patterns are defined in
|
|
-- config/routes
|
|
--
|
|
-- The majority of the code you will write in Yesod lives in these handler
|
|
-- functions. You can spread them across multiple files if you are so
|
|
-- inclined, or create a single monolithic file.
|
|
getHomeR :: Handler Html
|
|
getHomeR = do
|
|
maybeUser <- maybeAuth
|
|
let maybeLocalId = case maybeUser of
|
|
Just user -> userLocalId $ entityVal user
|
|
Nothing -> Nothing
|
|
defaultLayout $ do
|
|
aDomId <- newIdent
|
|
setTitle "Welcome To Gonito.net!"
|
|
$(widgetFile "homepage")
|
|
$(fayFile "Home")
|