Created
August 25, 2017 06:58
-
-
Save johnjcamilleri/1c363c6f6cdea98ab278d680c46bf272 to your computer and use it in GitHub Desktop.
Hakyll issues
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-------------------------------------------------------------------------------- | |
{-# LANGUAGE OverloadedStrings #-} | |
import Data.Monoid (mappend) | |
import Hakyll | |
-------------------------------------------------------------------------------- | |
main :: IO () | |
main = hakyll $ do | |
match "images/*" $ do | |
route idRoute | |
compile copyFileCompiler | |
match "css/*" $ do | |
route idRoute | |
compile compressCssCompiler | |
match (fromList ["about.rst", "contact.markdown"]) $ do | |
route $ setExtension "html" | |
compile $ pandocCompiler | |
>>= loadAndApplyTemplate "templates/default.html" defaultContext | |
>>= relativizeUrls | |
match "posts/*" $ do | |
route $ setExtension "html" | |
compile $ pandocCompiler | |
>>= loadAndApplyTemplate "templates/post.html" postCtx | |
>>= loadAndApplyTemplate "templates/default.html" postCtx | |
>>= relativizeUrls | |
create ["archive.html"] $ do | |
route idRoute | |
compile $ do | |
posts <- recentFirst =<< loadAll "posts/*" | |
let archiveCtx = | |
listField "posts" postCtx (return posts) `mappend` | |
constField "title" "Archives" `mappend` | |
defaultContext | |
makeItem "" | |
>>= loadAndApplyTemplate "templates/archive.html" archiveCtx | |
>>= loadAndApplyTemplate "templates/default.html" archiveCtx | |
>>= relativizeUrls | |
match "index.html" $ do | |
route idRoute | |
compile $ do | |
posts <- recentFirst =<< loadAll "posts/*" | |
let indexCtx = | |
listField "posts" postCtx (return posts) `mappend` | |
constField "title" "Home" `mappend` | |
defaultContext | |
getResourceBody | |
>>= applyAsTemplate indexCtx | |
>>= loadAndApplyTemplate "templates/default.html" indexCtx | |
>>= relativizeUrls | |
match "templates/*" $ compile templateBodyCompiler | |
-------------------------------------------------------------------------------- | |
postCtx :: Context String | |
postCtx = | |
dateField "date" "%B %e, %Y" `mappend` | |
defaultContext |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment