hakyll/examples/brochure/hakyll.hs

19 lines
508 B
Haskell
Raw Normal View History

2011-02-10 11:29:40 +00:00
{-# LANGUAGE OverloadedStrings #-}
import Control.Arrow ((>>>))
import Control.Monad (forM_)
import Hakyll
main :: IO ()
main = hakyll $ do
route "css/*" idRoute
compile "css/*" compressCssCompiler
2011-02-10 11:29:40 +00:00
compile "templates/*" templateCompiler
2011-02-10 11:29:40 +00:00
forM_ ["about.rst", "index.markdown", "code.lhs"] $ \page -> do
route page $ setExtension "html"
compile page $ readPageCompiler
>>> applyTemplateCompiler "templates/default.html"
>>> relativizeUrlsCompiler