diff options
Diffstat (limited to '')
-rw-r--r-- | hakyll/Main.hs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/hakyll/Main.hs b/hakyll/Main.hs index a11c6fb..f6b7aaa 100644 --- a/hakyll/Main.hs +++ b/hakyll/Main.hs @@ -20,6 +20,9 @@ main = hakyll $ do match "pastebin/*.html" $ do route idRoute compile copyFileCompiler + match "root/*" $ do + route $ dropPrefix "root/" + compile copyFileCompiler match "posts/*" $ do route $ setExtension "html" |