yosogr/Handler/Root.hs
Yann Esposito (Yogsototh) 827c20ea37 Initial commit
2012-01-25 16:18:39 +01:00

17 lines
No EOL
554 B
Haskell

module Handler.Root where
import Import
-- This is a handler function for the GET request method on the RootR
-- 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.
getRootR :: Handler RepHtml
getRootR = do
defaultLayout $ do
h2id <- lift newIdent
setTitle "yosogr homepage"
$(widgetFile "homepage")