mirror of https://github.com/newtype256/website
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.
21 lines
645 B
Haskell
21 lines
645 B
Haskell
--------------------------------------------------------------------------------
|
|
{-# LANGUAGE OverloadedStrings #-}
|
|
import Data.Monoid (mappend)
|
|
import Hakyll
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
|
main :: IO ()
|
|
main = hakyll $ do
|
|
match "assets/css/*" $ do
|
|
route idRoute
|
|
compile compressCssCompiler
|
|
|
|
match "index.md" $ do
|
|
route $ setExtension "html"
|
|
compile $ pandocCompiler
|
|
>>= loadAndApplyTemplate "_layouts/default.html" defaultContext
|
|
>>= relativizeUrls
|
|
|
|
match "_layouts/*" $ compile templateBodyCompiler
|