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 -------------------------------------- 1 file changed, 51 deletions(-) delete mode 100644 website/src/layouts/BlogPost.astro (limited to 'website/src/layouts/BlogPost.astro') 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}

-

-

- -
- -
-
- - -- cgit v1.2.3