Skip to content

Instantly share code, notes, and snippets.

@46bit
Last active August 29, 2015 14:00
Show Gist options
  • Save 46bit/11308414 to your computer and use it in GitHub Desktop.
Save 46bit/11308414 to your computer and use it in GitHub Desktop.
match "posts/*.md" $ do
route $ metadataRoute (\m ->
constRoute $
(fromMaybe "year" $ Data.Map.lookup "year" m) ++
"/" ++
(fromMaybe "title" $ Data.Map.lookup "title" m) ++
".html")
compile $ pandocCompiler
>>= loadAndApplyTemplate "templates/default.html" postCtx
>>= relativizeUrls
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment