Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
ohanhi.com/site.hs
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
155 lines (124 sloc)
4.46 KB
This file contains 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 System.FilePath (splitExtension) | |
import Data.Monoid (mappend) | |
import Control.Applicative (Alternative (..)) | |
import qualified Control.Monad as Monad | |
import Data.Maybe (fromMaybe) | |
import Network.HTTP.Base (urlEncode) | |
import Hakyll | |
-------------------------------------------------------------------------------- | |
main :: IO () | |
main = hakyll $ do | |
match "img/**" $ do | |
route idRoute | |
compile copyFileCompiler | |
match "css/*" $ do | |
route idRoute | |
compile compressCssCompiler | |
match "js/*" $ do | |
route idRoute | |
compile copyFileCompiler | |
match "posts/*" $ do | |
route $ customRoute $ pathToPostName . toFilePath | |
compile postCompiler | |
match "drafts/*" $ do | |
route $ setExtension "html" | |
compile postCompiler | |
match "index.html" $ do | |
route idRoute | |
compile $ do | |
posts <- loadAll "posts/*" >>= recentFirst | |
let indexCtx = | |
listField "posts" postCtx (return posts) | |
`mappend` defaultContext | |
getResourceBody | |
>>= applyAsTemplate indexCtx | |
>>= loadAndApplyTemplate "templates/default.html" indexCtx | |
>>= relativizeUrls | |
match "CNAME" $ do | |
route idRoute | |
compile copyFileCompiler | |
match "robots.txt" $ do | |
route idRoute | |
compile copyFileCompiler | |
match "keybase.txt" $ do | |
route idRoute | |
compile copyFileCompiler | |
match "templates/*" $ compile templateBodyCompiler | |
create ["atom.xml"] $ do | |
route idRoute | |
compile $ do | |
let feedCtx = postCtx `mappend` bodyField "description" | |
posts <- fmap (take 15) . recentFirst =<< | |
loadAllSnapshots "posts/*" "content" | |
renderAtom feedConfig feedCtx posts | |
postCompiler :: Compiler (Item String) | |
postCompiler = | |
pandocCompiler | |
>>= loadAndApplyTemplate "templates/post-content.html" postCtx | |
>>= saveSnapshot "content" | |
>>= loadAndApplyTemplate "templates/post.html" postCtx | |
>>= relativizeUrls | |
(|>) = flip ($) | |
{- This function keeps the same filename structure I've had with Jekyll: | |
/posts/YYYY-MM-DD-post-name.md | |
-> /post-name.html | |
-} | |
pathToPostName :: String -> String | |
pathToPostName path = | |
path | |
|> splitAll "/" | |
|> (\(p : name : _) -> splitExtension name ) | |
|> (\(n, e) -> drop 11 n ++ ".html") | |
-------------------------------------------------------------------------------- | |
feedConfig :: FeedConfiguration | |
feedConfig = | |
FeedConfiguration | |
{ feedTitle = "ohanhi.com" | |
, feedDescription = "Posts from my personal website." | |
, feedAuthorName = "Ossi Hanhinen" | |
, feedAuthorEmail = "ossi.hanhinen@gmail.com" | |
, feedRoot = "http://ohanhi.com" | |
} | |
postCtx :: Context String | |
postCtx = | |
dateField "date" "%B %-d, %Y" | |
`mappend` constField "base_url" "http://ohanhi.com" | |
`mappend` fullTitleField "full_title" False | |
`mappend` fullTitleField "twitter_text" True | |
`mappend` twitterUrlField "http://ohanhi.com" | |
`mappend` listContextWith "i_expect_you_to_know" | |
`mappend` listContextWith "read_this_to" | |
`mappend` defaultContext | |
twitterUrlField :: String -> Context a | |
twitterUrlField baseUrl = | |
field "twitter_url" $ | |
fmap (maybe empty (\a -> urlEncode $ baseUrl ++ toUrl a)) . getRoute . itemIdentifier | |
fullTitleField :: String -> Bool -> Context a | |
fullTitleField fieldName urlEncoded = field fieldName $ \item -> do | |
metadata <- getMetadata (itemIdentifier item) | |
let find s = lookupString s metadata | |
(find "series", find "title", find "subtitle") | |
|> (\(series, title, subtitle) -> | |
fromMaybe "" (fmap (\s -> s ++ ": ") series) | |
++ fromMaybe "No title" title | |
++ fromMaybe "" (fmap ((++) " - ") subtitle) | |
) | |
|> (if urlEncoded then urlEncode else \a -> a) | |
|> return | |
listContextWith :: String -> Context a | |
listContextWith s = | |
getList s | |
|> listField s defaultContext | |
getList :: String -> Compiler [Item String] | |
getList s = do | |
identifier <- getUnderlying | |
metadata <- getMetadata identifier | |
metadata | |
|> lookupStringList s | |
|> fromMaybe [] | |
|> map toItem | |
|> return | |
toItem x = | |
Item (fromFilePath x) x |