diff options
-rw-r--r-- | ads.txt | 1 | ||||
-rw-r--r-- | app-ads.txt | 1 | ||||
-rw-r--r-- | site.hs | 2 |
3 files changed, 3 insertions, 1 deletions
@@ -0,0 +1 @@ +placeholder.example.com, placeholder, DIRECT, placeholder diff --git a/app-ads.txt b/app-ads.txt new file mode 100644 index 0000000..19ce4ca --- /dev/null +++ b/app-ads.txt @@ -0,0 +1 @@ +placeholder.example.com, placeholder, DIRECT, placeholder @@ -14,7 +14,7 @@ main :: IO () main = do Encoding.setLocaleEncoding Encoding.utf8 hakyllWith hakyllConfig $ do - match ("images/*" .||. "files/*" .||. "robots.txt" .||. "health") $ do + match ("images/*" .||. "files/*" .||. "robots.txt" .||. "ads.txt" .||. "app-ads.txt" .||. "health") $ do route idRoute compile copyFileCompiler |