-- | Routes for viewing main content: the repos
module Routes.Home
( getHomeR
) where
import ClassyPrelude hiding (Handler)
import qualified Yesod
import HagiaSite (Handler)
import Yesod (Html, whamlet)
getHomeR :: Handler Html
getHomeR =
Yesod.defaultLayout $ do
Yesod.setTitle "Hagia"
[whamlet|
Welcome to Hagia. Some day there will be suggestions on the main page
|]