site.hs 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. --------------------------------------------------------------------------------
  2. {-# LANGUAGE OverloadedStrings #-}
  3. import Data.Monoid (mappend)
  4. import Hakyll
  5. import qualified Data.Set as S
  6. import Text.Pandoc
  7. --------------------------------------------------------------------------------
  8. main :: IO ()
  9. main = hakyll $ do
  10. match "images/*" $ do
  11. route idRoute
  12. compile copyFileCompiler
  13. match "images/*/*" $ do
  14. route idRoute
  15. compile copyFileCompiler
  16. match "assets/*" $ do
  17. route idRoute
  18. compile copyFileCompiler
  19. match "scripts/*" $ do
  20. route idRoute
  21. compile copyFileCompiler
  22. match "stuff/zombie_protagonist/Zombie.swf" $ do
  23. route idRoute
  24. compile copyFileCompiler
  25. match "stuff/zombie_protagonist/library/mp3/*.mp3" $ do
  26. route idRoute
  27. compile copyFileCompiler
  28. match "css/*" $ do
  29. route idRoute
  30. compile compressCssCompiler
  31. match "resume_jmelesky.pdf" $ do
  32. route idRoute
  33. compile copyFileCompiler
  34. match "stuff/*.md" $ do
  35. route $ setExtension "html"
  36. compile $ siteCompiler
  37. >>= loadAndApplyTemplate "templates/default.html" defaultContext
  38. >>= relativizeUrls
  39. match "stuff/*/*.md" $ do
  40. route $ setExtension "html"
  41. compile $ siteCompiler
  42. >>= loadAndApplyTemplate "templates/default.html" defaultContext
  43. >>= relativizeUrls
  44. match "*.md" $ do
  45. route $ setExtension "html"
  46. compile $ siteCompiler
  47. >>= loadAndApplyTemplate "templates/default.html" defaultContext
  48. >>= relativizeUrls
  49. tags <- buildTags "posts/*.md" (fromCapture "tags/*.html")
  50. tagsRules tags $ \tag pattern -> do
  51. let title = "Posts tagged \"" ++ tag ++ "\""
  52. route idRoute
  53. compile $ do
  54. posts <- recentFirst =<< loadAll pattern
  55. let ctx = constField "title" title
  56. `mappend` listField "posts" postCtx (return posts)
  57. `mappend` defaultContext
  58. makeItem ""
  59. >>= loadAndApplyTemplate "templates/tag.html" ctx
  60. >>= loadAndApplyTemplate "templates/default.html" ctx
  61. >>= relativizeUrls
  62. match "posts/*.md" $ do
  63. route $ setExtension "html"
  64. compile $ siteCompiler
  65. >>= loadAndApplyTemplate "templates/post.html" (postCtxWithTags tags)
  66. >>= saveSnapshot "post_content"
  67. >>= loadAndApplyTemplate "templates/default.html" (postCtxWithTags tags)
  68. >>= relativizeUrls
  69. create ["archive.html"] $ do
  70. route idRoute
  71. compile $ do
  72. posts <- recentFirst =<< loadAll "posts/*.md"
  73. let archiveCtx =
  74. listField "posts" postCtx (return posts) `mappend`
  75. constField "title" "Archives" `mappend`
  76. defaultContext
  77. makeItem ""
  78. >>= loadAndApplyTemplate "templates/archive.html" archiveCtx
  79. >>= loadAndApplyTemplate "templates/default.html" archiveCtx
  80. >>= relativizeUrls
  81. create ["index.html"] $ do
  82. route idRoute
  83. compile $ do
  84. post <- fmap head . recentFirst =<< loadAllSnapshots "posts/*.md" "post_content"
  85. loadAndApplyTemplate "templates/default.html" (postCtxWithTags tags) post
  86. >>= relativizeUrls
  87. >>= changeIdentifier "index.html"
  88. match "templates/*" $ compile templateBodyCompiler
  89. --------------------------------------------------------------------------------
  90. postCtx :: Context String
  91. postCtx =
  92. dateField "date" "%B %e, %Y" `mappend`
  93. defaultContext
  94. postCtxWithTags :: Tags -> Context String
  95. postCtxWithTags tags = tagsField "tags" tags `mappend` postCtx
  96. changeIdentifier :: Identifier -> Item a -> Compiler (Item a)
  97. changeIdentifier idt item = return (itemSetIdentifier idt item)
  98. itemSetIdentifier :: Identifier -> Item a -> Item a
  99. itemSetIdentifier x (Item _ i) = Item x i
  100. siteCompiler :: Compiler (Item String)
  101. siteCompiler =
  102. let addExtensions = [Ext_tex_math_dollars, Ext_tex_math_double_backslash,
  103. Ext_latex_macros, Ext_footnotes, Ext_inline_notes]
  104. wExtensions = foldr S.insert (writerExtensions defaultHakyllWriterOptions) addExtensions
  105. rExtensions = foldr S.insert (readerExtensions defaultHakyllReaderOptions) addExtensions
  106. siteWriterOptions = defaultHakyllWriterOptions {
  107. writerExtensions = wExtensions,
  108. writerHTMLMathMethod = MathJax ""
  109. }
  110. siteReaderOptions = defaultHakyllReaderOptions {
  111. readerExtensions = rExtensions
  112. }
  113. in pandocCompilerWith siteReaderOptions siteWriterOptions