summaryrefslogtreecommitdiff
path: root/layouts
diff options
context:
space:
mode:
authormms <michal@sapka.me>2024-04-26 22:43:38 +0200
committermms <michal@sapka.me>2024-04-26 22:43:38 +0200
commitf7e5e6934e2f2a0b5822bc0abb8522f659a45d65 (patch)
treed313cdc6b99843fd70e7f35c3f34a64873d22da1 /layouts
parent2b72efd749c76b9c3d6a7a5bc310e6c6a530dea8 (diff)
feat: remove all posts page:
Diffstat (limited to 'layouts')
-rw-r--r--layouts/_default/all_posts.html12
1 files changed, 0 insertions, 12 deletions
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 }}