diff options
| author | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2010-01-19 20:42:16 +0100 |
|---|---|---|
| committer | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2010-01-19 20:42:16 +0100 |
| commit | 715387756e57b539e29d036515e047cdf5d264ba (patch) | |
| tree | 2221ca421c0a5abf4a2c5f8cda14c5582f243b3b /examples/simpleblog | |
| parent | 0ba0eac8d96c11d13163c7ec184392513de7ca77 (diff) | |
| download | hakyll-715387756e57b539e29d036515e047cdf5d264ba.tar.gz | |
Made hakyll function backward-compatible. Version bump.
Diffstat (limited to 'examples/simpleblog')
| -rw-r--r-- | examples/simpleblog/hakyll.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/simpleblog/hakyll.hs b/examples/simpleblog/hakyll.hs index 1b26bce..bdcb3fe 100644 --- a/examples/simpleblog/hakyll.hs +++ b/examples/simpleblog/hakyll.hs @@ -1,6 +1,6 @@ module Main where -import Text.Hakyll (hakyll, defaultHakyllConfiguration) +import Text.Hakyll (hakyll) import Text.Hakyll.Render import Text.Hakyll.Context import Text.Hakyll.File (getRecursiveContents, directory) @@ -10,7 +10,7 @@ import Control.Monad (mapM_, liftM) import Control.Monad.Reader (liftIO) import Data.Either (Either(..)) -main = hakyll defaultHakyllConfiguration $ do +main = hakyll $ do -- Static directory. directory css "css" |
