diff options
author | mms <michal@sapka.me> | 2024-04-26 22:43:38 +0200 |
---|---|---|
committer | mms <michal@sapka.me> | 2024-04-26 22:43:38 +0200 |
commit | f7e5e6934e2f2a0b5822bc0abb8522f659a45d65 (patch) | |
tree | d313cdc6b99843fd70e7f35c3f34a64873d22da1 | |
parent | 2b72efd749c76b9c3d6a7a5bc310e6c6a530dea8 (diff) |
feat: remove all posts page:
-rw-r--r-- | content/archives/all.md | 13 | ||||
-rw-r--r-- | layouts/_default/all_posts.html | 12 |
2 files changed, 0 insertions, 25 deletions
diff --git a/content/archives/all.md b/content/archives/all.md deleted file mode 100644 index 8065dae..0000000 --- a/content/archives/all.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "All" -type: "special" -layout: all_posts -category: -abstract: all archives for this site -date: 2009-01-08T13:58:33+01:00 -year: -draft: false -tags: [] ---- -a - diff --git a/layouts/_default/all_posts.html b/layouts/_default/all_posts.html deleted file mode 100644 index ea5de00..0000000 --- a/layouts/_default/all_posts.html +++ /dev/null @@ -1,12 +0,0 @@ -{{ define "main" }} -<article class="list taxonomy"> - <h2> - All posts on this blog - </h2> - <ul> - {{ range where site.RegularPages "Type" "!=" "special"}} - {{ partial "partials/article_list_item.html" . }} - {{ end }} - </ul> -</article> -{{ end }} |