You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
{-# 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
|
|
|
|
|
|
|
|
match "index.rst" $ do
|
|
|
|
route $ setExtension "html"
|
|
|
|
compile $ do
|
|
|
|
posts <- recentFirst =<< loadAll "posts/*"
|
|
|
|
let indexCtx =
|
|
|
|
listField "posts" postCtx (return posts) `mappend`
|
|
|
|
defaultContext
|
|
|
|
|
|
|
|
pandocCompiler
|
|
|
|
>>= applyAsTemplate indexCtx
|
|
|
|
>>= loadAndApplyTemplate "templates/default.html" indexCtx
|
|
|
|
>>= relativizeUrls
|
|
|
|
|
|
|
|
match "templates/*" $ compile templateCompiler
|
|
|
|
|
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
postCtx :: Context String
|
|
|
|
postCtx =
|
|
|
|
dateField "date" "%B %e, %Y" `mappend`
|
|
|
|
defaultContext
|