diff options
Diffstat (limited to 'examples/brochure')
-rw-r--r-- | examples/brochure/hakyll.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/brochure/hakyll.hs b/examples/brochure/hakyll.hs index e87499f..b2606ba 100644 --- a/examples/brochure/hakyll.hs +++ b/examples/brochure/hakyll.hs @@ -1,9 +1,9 @@ -import Text.Hakyll (hakyll, defaultHakyllConfiguration) +import Text.Hakyll (hakyll) import Text.Hakyll.File (directory) import Text.Hakyll.Render (css, static, renderChain) import Text.Hakyll.Renderables (createPagePath) -main = hakyll defaultHakyllConfiguration $ do +main = hakyll $ do directory css "css" render "about.markdown" render "index.markdown" |