summaryrefslogtreecommitdiff
path: root/examples/brochure/hakyll.hs
diff options
context:
space:
mode:
authorJasper Van der Jeugt <jaspervdj@gmail.com>2011-06-13 08:43:28 +0200
committerJasper Van der Jeugt <jaspervdj@gmail.com>2011-06-13 08:43:28 +0200
commitedeef66180f24e4254b512041bee617368fa1eba (patch)
treedf2b6c470dba9fda52a0d3b96fd569d2c74b2c48 /examples/brochure/hakyll.hs
parent893b366435739d073d2b6b9cafae868b5d361354 (diff)
downloadhakyll-edeef66180f24e4254b512041bee617368fa1eba.tar.gz
Remove examples from this repo
Diffstat (limited to 'examples/brochure/hakyll.hs')
-rw-r--r--examples/brochure/hakyll.hs22
1 files changed, 0 insertions, 22 deletions
diff --git a/examples/brochure/hakyll.hs b/examples/brochure/hakyll.hs
deleted file mode 100644
index f33b37d..0000000
--- a/examples/brochure/hakyll.hs
+++ /dev/null
@@ -1,22 +0,0 @@
-{-# LANGUAGE OverloadedStrings #-}
-import Control.Arrow ((>>>))
-
-import Hakyll
-
-main :: IO ()
-main = hakyll $ do
- match "images/*" $ do
- route idRoute
- compile copyFileCompiler
-
- match "css/*" $ do
- route idRoute
- compile compressCssCompiler
-
- match "templates/*" $ compile templateCompiler
-
- match (list ["about.rst", "index.markdown", "code.lhs"]) $ do
- route $ setExtension "html"
- compile $ pageCompiler
- >>> applyTemplateCompiler "templates/default.html"
- >>> relativizeUrlsCompiler