summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorJasper Van der Jeugt <jaspervdj@gmail.com>2016-01-31 17:26:49 +0100
committerJasper Van der Jeugt <jaspervdj@gmail.com>2016-01-31 17:26:49 +0100
commit6eb19c9eaacb6c9d0b1f9c3717bcaebbbf7cea19 (patch)
tree31c23f03e0aa3bfa6e2f6dda6827406cd618c184 /data
parent5f0bdeabaafb696753d491b35eeee86f69d57507 (diff)
parent5a4ae4147313f52d50ff3bd9d74340a86175a5d9 (diff)
downloadhakyll-6eb19c9eaacb6c9d0b1f9c3717bcaebbbf7cea19.tar.gz
Merge pull request #385 from bergus/template
templateCompiler compiles resource body only
Diffstat (limited to 'data')
-rw-r--r--data/example/site.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/data/example/site.hs b/data/example/site.hs
index be041f8..2751f77 100644
--- a/data/example/site.hs
+++ b/data/example/site.hs
@@ -57,7 +57,7 @@ main = hakyll $ do
>>= loadAndApplyTemplate "templates/default.html" indexCtx
>>= relativizeUrls
- match "templates/*" $ compile templateCompiler
+ match "templates/*" $ compile templateBodyCompiler
--------------------------------------------------------------------------------