scratch/output/Scratch/fr/blog/Yesod-tutorial-for-newbies/code/New.hs
Yann Esposito (Yogsototh) 085087fc07 Update the CSS and content
2012-01-02 15:39:00 +01:00

15 lines
289 B
Haskell

module Handler.New where
import Import
getNewR :: Handler RepHtml
getNewR = do
defaultLayout $ do
$(widgetFile "new")
postNewR :: Handler RepHtml
postNewR = do
postedText <- runInputPost $ ireq textField "content"
defaultLayout $ do
$(widgetFile "posted")