diff options
author | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2010-01-27 12:51:11 +0100 |
---|---|---|
committer | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2010-01-27 12:51:11 +0100 |
commit | dc516e9665f8245fb126c9e6b5361363395f502a (patch) | |
tree | 5a3056a7973cce41083c5d338d8acd660feffa2f /examples/tagblog | |
parent | cf2c4ad77c73352d1ea065323e6e1c2d304040dd (diff) | |
download | hakyll-dc516e9665f8245fb126c9e6b5361363395f502a.tar.gz |
Updated examples and tutorials.
Diffstat (limited to 'examples/tagblog')
-rw-r--r-- | examples/tagblog/hakyll.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/tagblog/hakyll.hs b/examples/tagblog/hakyll.hs index df5e9d0..dcbb943 100644 --- a/examples/tagblog/hakyll.hs +++ b/examples/tagblog/hakyll.hs @@ -20,7 +20,7 @@ main = hakyll $ do let renderablePosts = map createPagePath postPaths -- Read tag map. - tagMap <- readTagMap postPaths + tagMap <- readTagMap "postTags" postPaths -- Render all posts list. renderPostList "posts.html" "All posts" postPaths |