diff options
author | EuAndreh <eu@euandre.org> | 2018-07-15 23:08:26 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2018-07-15 23:08:26 -0300 |
commit | ea69cbbef8117781122f7f89a6c4ab28044e4348 (patch) | |
tree | 5f908f89d4d048aa3233940ce64b36299b262d47 /hakyll | |
parent | Add fonts (diff) | |
download | euandre.org-ea69cbbef8117781122f7f89a6c4ab28044e4348.tar.gz euandre.org-ea69cbbef8117781122f7f89a6c4ab28044e4348.tar.xz |
Add public-key.txt under site/root/
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" |