diff options
author | Stefan Kreutz <mail@skreutz.com> | 2025-10-11 22:14:24 +0200 |
---|---|---|
committer | Stefan Kreutz <mail@skreutz.com> | 2025-10-11 22:14:24 +0200 |
commit | 974df47fb8eaf230ec53738a102a294b1d941561 (patch) | |
tree | 576a0af2b001cdfc06d22351c0b27da01a05c29a | |
parent | 1e1b9140f0b64be7bf1329f585a16a24ac60b901 (diff) | |
download | blog-974df47fb8eaf230ec53738a102a294b1d941561.tar |
-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 |