Skip to content

Instantly share code, notes, and snippets.

@purefn
Created April 9, 2015 17:21
Show Gist options
  • Save purefn/7608c4584471ae64a575 to your computer and use it in GitHub Desktop.
Save purefn/7608c4584471ae64a575 to your computer and use it in GitHub Desktop.
page = doctypehtml_ $ do
head_ $ do
webResources Batched "/s/" [ aui, reactjs, pageResource ]
body_ "Hello world!"
-- or
page2 = withWebResources Separate "/s/" [ aui, reactjs, pageResource ] $ \links scripts ->
doctypehtml_ $ do
head_ $ do
links
body_ $ do
"Hello world!"
scripts
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment