From cefb901ff637e765c8c6d300a5e6466e53236f18 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Fri, 24 Jan 2020 13:46:52 -0300 Subject: Remove "/archive.html" page It was simply a duplicate of "/index.html", and I'd rather keep all the posts listed in the index itself. --- hakyll/Main.hs | 14 -------------- site/index.html | 2 -- site/templates/archive.html | 2 -- site/templates/default.html | 1 - 4 files changed, 19 deletions(-) delete mode 100644 site/templates/archive.html diff --git a/hakyll/Main.hs b/hakyll/Main.hs index 139b607..90e6b0b 100644 --- a/hakyll/Main.hs +++ b/hakyll/Main.hs @@ -76,20 +76,6 @@ main = hakyll $ do >>= loadAndApplyTemplate "templates/default.html" indexCtx >>= relativizeUrls - create ["archive.html"] $ do - route idRoute - compile $ do - posts <- recentFirst =<< loadAll "posts/*" - let archiveCtx = - listField "posts" postCtx (return posts) `mappend` - constField "title" "Archives" `mappend` - defaultContext - - makeItem "" - >>= loadAndApplyTemplate "templates/archive.html" archiveCtx - >>= loadAndApplyTemplate "templates/default.html" archiveCtx - >>= relativizeUrls - create ["atom.xml", "feed.xml"] $ do route idRoute compile $ do diff --git a/site/index.html b/site/index.html index 3ef7cd9..8c3db94 100644 --- a/site/index.html +++ b/site/index.html @@ -4,5 +4,3 @@ title: Home

Recent posts

$partial("templates/post-list.html")$ - -

You can find more in the archives.

diff --git a/site/templates/archive.html b/site/templates/archive.html deleted file mode 100644 index b43eeb2..0000000 --- a/site/templates/archive.html +++ /dev/null @@ -1,2 +0,0 @@ -Here you can find all my previous posts: -$partial("templates/post-list.html")$ diff --git a/site/templates/default.html b/site/templates/default.html index ef35307..44e2fc6 100644 --- a/site/templates/default.html +++ b/site/templates/default.html @@ -16,7 +16,6 @@