diff options
author | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2011-04-05 16:20:43 +0200 |
---|---|---|
committer | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2011-04-05 16:20:43 +0200 |
commit | 8dd1f94e02d7df918f2e3a08328468c4b584d683 (patch) | |
tree | 319a7cfb3901e4aad8a89482cb45c9f650b77357 /examples/morepages | |
parent | ff118fec98ef02e2eead2a752d9c6619a2e891df (diff) | |
download | hakyll-8dd1f94e02d7df918f2e3a08328468c4b584d683.tar.gz |
Update examples to new matching mechanism
Diffstat (limited to 'examples/morepages')
-rw-r--r-- | examples/morepages/hakyll.hs | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/examples/morepages/hakyll.hs b/examples/morepages/hakyll.hs index d62f8a8..c1b96e6 100644 --- a/examples/morepages/hakyll.hs +++ b/examples/morepages/hakyll.hs @@ -9,20 +9,21 @@ import Hakyll main :: IO () main = hakyll $ do -- Compress CSS - route "css/*" idRoute - compile "css/*" compressCssCompiler + match "css/*" $ do + route idRoute + compile compressCssCompiler -- Render static pages - forM_ ["about.markdown", "index.markdown", "products.markdown"] $ \p -> do - route p $ setExtension ".html" - compile p $ - pageCompiler - >>> requireA "footer.markdown" (setFieldA "footer" $ arr pageBody) - >>> applyTemplateCompiler "templates/default.html" - >>> relativizeUrlsCompiler + forM_ ["about.markdown", "index.markdown", "products.markdown"] $ \p -> + match p $ do + route $ setExtension ".html" + compile $ pageCompiler + >>> requireA "footer.markdown" (setFieldA "footer" $ arr pageBody) + >>> applyTemplateCompiler "templates/default.html" + >>> relativizeUrlsCompiler -- Compile footer - compile "footer.markdown" pageCompiler + match "footer.markdown" $ compile pageCompiler -- Read templates - compile "templates/*" templateCompiler + match "templates/*" $ compile templateCompiler |