From ca8e6824eaa711105f4092365792720c9dde026b Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Thu, 18 Jun 2026 19:21:59 +0100 Subject: remove Astro website --- website/src/layouts/BlogPost.astro | 51 ---------------------------------- website/src/layouts/MicrologPost.astro | 43 ---------------------------- website/src/layouts/Page.astro | 21 -------------- 3 files changed, 115 deletions(-) delete mode 100644 website/src/layouts/BlogPost.astro delete mode 100644 website/src/layouts/MicrologPost.astro delete mode 100644 website/src/layouts/Page.astro (limited to 'website/src/layouts') diff --git a/website/src/layouts/BlogPost.astro b/website/src/layouts/BlogPost.astro deleted file mode 100644 index 620bf81..0000000 --- a/website/src/layouts/BlogPost.astro +++ /dev/null @@ -1,51 +0,0 @@ ---- -import BaseHead from '../components/BaseHead.astro'; -import FormattedDate from '../components/FormattedDate.astro'; -import Navbar from '../components/Navbar.astro'; - -type Props = { - title: string; - description?: string; - updatedDate?: Date; - pubDate: Date; -} - -const { title, description, pubDate, updatedDate } = Astro.props; - -const canonicalUrl = new URL(Astro.url.pathname, Astro.site); ---- - - - - - - - - - -
- - -
-

{title}

-

-

- -
- -
-
- - diff --git a/website/src/layouts/MicrologPost.astro b/website/src/layouts/MicrologPost.astro deleted file mode 100644 index fa93011..0000000 --- a/website/src/layouts/MicrologPost.astro +++ /dev/null @@ -1,43 +0,0 @@ ---- -import BaseHead from '../components/BaseHead.astro'; -import FormattedDate from '../components/FormattedDate.astro'; -import Navbar from '../components/Navbar.astro'; - -type Props = { - pubDate: Date; - title: string; -} - -const { pubDate, title } = Astro.props; - -const canonicalUrl = new URL(Astro.url.pathname, Astro.site); ---- - - - - - - - - - - - - diff --git a/website/src/layouts/Page.astro b/website/src/layouts/Page.astro deleted file mode 100644 index d41e58c..0000000 --- a/website/src/layouts/Page.astro +++ /dev/null @@ -1,21 +0,0 @@ ---- -import BaseHead from "../components/BaseHead.astro"; -import Navbar from "../components/Navbar.astro"; - -const { title, description } = Astro.props; ---- - - - - - - - - - -
- -
- - - -- cgit v1.2.3