blob: 5896fdc81d3ece762278f4c4a3b756caa2e931cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import Text.Hakyll (hakyll)
import Text.Hakyll.File (directory)
import Text.Hakyll.Render (css, static, renderChain)
import Text.Hakyll.Renderables (createPagePath, combine)
main = hakyll $ do
directory css "css"
render "about.markdown"
render "index.markdown"
render "products.markdown"
where
render = renderChain ["templates/default.html"] . withFooter . createPagePath
withFooter a = a `combine` createPagePath "footer.markdown"
|