blogng/site.hs

103 lines
3.1 KiB
Haskell
Raw Normal View History

2017-01-22 21:30:42 +00:00
--------------------------------------------------------------------------------
{-# LANGUAGE OverloadedStrings #-}
import Data.Monoid (mappend)
import Hakyll
import Hakyll.Core.Identifier (toFilePath)
import System.FilePath
import Text.Regex (splitRegex, mkRegex)
2017-01-22 21:30:42 +00:00
--------------------------------------------------------------------------------
2017-02-02 14:42:52 +00:00
config :: Configuration
config = defaultConfiguration {
destinationDirectory = "public"
}
2017-01-22 21:30:42 +00:00
main :: IO ()
2017-02-02 14:42:52 +00:00
main = hakyllWith config $ do
2017-02-01 15:38:12 +00:00
tags <- extractTags
2017-01-22 21:30:42 +00:00
match "images/*" $ do
route idRoute
compile copyFileCompiler
match "css/*" $ do
route idRoute
compile compressCssCompiler
2017-01-31 21:42:20 +00:00
match "fonts/icomoon/*" $ do
route $ idRoute
compile copyFileCompiler
match "fonts/et-book/*/*" $ do
route $ idRoute
compile copyFileCompiler
2017-02-13 22:29:23 +00:00
match "notes/*" $ do
route $ idRoute
compile copyFileCompiler
match "blog/*" $ do
route $ octopressRoute
2017-01-22 21:30:42 +00:00
compile $ pandocCompiler
>>= loadAndApplyTemplate "templates/post.html" postCtx
>>= loadAndApplyTemplate "templates/default.html" postCtx
>>= relativizeUrls
create ["archive.html"] $ do
route idRoute
compile $ do
posts <- recentFirst =<< loadAll "blog/*"
2017-01-22 21:30:42 +00:00
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 "blog/*"
2017-01-22 21:30:42 +00:00
let indexCtx =
2017-01-31 21:42:20 +00:00
listField "posts" postCtx (return $ take 5 posts) `mappend`
2017-01-22 21:30:42 +00:00
constField "title" "Home" `mappend`
2017-02-01 15:38:12 +00:00
tagsField "tags" tags `mappend`
2017-01-22 21:30:42 +00:00
defaultContext
getResourceBody
>>= applyAsTemplate indexCtx
>>= loadAndApplyTemplate "templates/default.html" indexCtx
>>= relativizeUrls
match "templates/*" $ compile templateBodyCompiler
--------------------------------------------------------------------------------
2017-02-01 15:38:12 +00:00
extractTags :: Rules Tags
extractTags = do
tags <- buildTags ("blogs/**" .&&. hasNoVersion) $ fromCapture "tags/*.html"
return $ sortTagsBy caseInsensitiveTags tags
2017-01-22 21:30:42 +00:00
postCtx :: Context String
postCtx =
dateField "date" "%B %e, %Y" `mappend`
defaultContext
-- octopress compatible routes
octopressRoute :: Routes
octopressRoute = customRoute $ octoMangaling
octoMangaling :: Identifier -> FilePath
octoMangaling pathId = base </> year </> month </> day </> post </> "index.html"
where
p = toFilePath pathId
base = takeDirectory p
seps = splitRegex (mkRegex "-") $ takeBaseName p
year:month:day:xs = seps
post = tail $ foldl (\a b -> a ++ "-" ++ b) "" xs