about summary refs log tree commit diff
path: root/site.hs
diff options
context:
space:
mode:
authorPaweł Dybiec <pawel@dybiec.info>2023-11-02 00:53:02 +0000
committerPaweł Dybiec <pawel@dybiec.info>2023-11-02 00:55:01 +0000
commitf26447a143d1586466f4319f224d1ed2ccdd3e30 (patch)
treeee267243082e6426aa4f5fb933c591b05d8de34e /site.hs
parentCleanup (diff)
Update about + minor details
Diffstat (limited to 'site.hs')
-rw-r--r--site.hs3
1 files changed, 2 insertions, 1 deletions
diff --git a/site.hs b/site.hs
index 7d88da9..d32fd49 100644
--- a/site.hs
+++ b/site.hs
@@ -7,6 +7,7 @@ import           Hakyll
 --------------------------------------------------------------------------------
 main :: IO ()
 main = hakyll $ do
+
     match "images/*" $ do
         route   idRoute
         compile copyFileCompiler
@@ -40,7 +41,7 @@ main = hakyll $ do
             >>= loadAndApplyTemplate "templates/default.html" postCtx
             >>= relativizeUrls
 
-    create ["archive.html"] $ do
+    create ["posts.html"] $ do
         route idRoute
         compile $ do
             posts <- recentFirst =<< loadAll "posts/*"