{excerptFromBody(entry.body)}
-diff --git a/src/components/ArchiveListPage.astro b/src/components/ArchiveListPage.astro
deleted file mode 100644
index 6fbd71c4..00000000
--- a/src/components/ArchiveListPage.astro
+++ /dev/null
@@ -1,121 +0,0 @@
----
-import SiteLayout from "./SiteLayout.astro";
-import SiteSidebar from "./SiteSidebar.astro";
-import { categoryHref, excerptFromBody, formatDate, slugify, tagHref } from "../lib/archive";
-
-const {
- title,
- heading,
- description,
- pathname,
- entries = [],
- currentPage = 1,
- totalPages = 1,
- pageHref,
-} = Astro.props;
----
-
- {excerptFromBody(entry.body)}
- {title}
-
-
-
This page has moved to {target}.
- - - diff --git a/src/lib/archive.ts b/src/lib/archive.ts deleted file mode 100644 index d9bc6eaa..00000000 --- a/src/lib/archive.ts +++ /dev/null @@ -1,134 +0,0 @@ -import type { CollectionEntry } from "astro:content"; -import { getCollection } from "astro:content"; - -export type ArchiveEntry = CollectionEntry<"archive">; - -const entityMap: Record