Created
March 15, 2011 18:38
-
-
Save jacobstanley/871207 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
withPost :: Splice Application | |
withPost = callView [ ("title", titleSplice) | |
, ("date", dateSplice) | |
, ("body", bodySplice) ] | |
withPost :: Splice Application | |
withPost = viewWith [ ("title", titleSplice) | |
, ("date", dateSplice) | |
, ("body", bodySplice) ] | |
withPost :: Splice Application | |
withPost = runChildrenWith [ ("title", titleSplice) | |
, ("date", dateSplice) | |
, ("body", bodySplice) ] | |
withPost :: Splice Application | |
withPost = childrenWith [ ("title", titleSplice) | |
, ("date", dateSplice) | |
, ("body", bodySplice) ] | |
withPost :: Splice Application | |
withPost = contentWith [ ("title", titleSplice) | |
, ("date", dateSplice) | |
, ("body", bodySplice) ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment