summaryrefslogtreecommitdiff
path: root/website/src/pages/blog/index.astro
diff options
context:
space:
mode:
Diffstat (limited to 'website/src/pages/blog/index.astro')
-rw-r--r--website/src/pages/blog/index.astro23
1 files changed, 0 insertions, 23 deletions
diff --git a/website/src/pages/blog/index.astro b/website/src/pages/blog/index.astro
deleted file mode 100644
index df758ed..0000000
--- a/website/src/pages/blog/index.astro
+++ /dev/null
@@ -1,23 +0,0 @@
----
-import BaseHead from '../../components/BaseHead.astro';
-import { SITE_TITLE, SITE_DESCRIPTION } from '../../consts';
-import BlogFeed from '../../components/BlogFeed.astro';
-import Navbar from '../../components/Navbar.astro';
----
-
-<!doctype html>
-<html lang="en">
- <head>
- <BaseHead title={SITE_TITLE} description={SITE_DESCRIPTION} />
- </head>
- <body>
- <Navbar />
- <main>
- <BlogFeed headingLevel={1}>
- <section>
- <p><a href="/blog/subscribe">How to subscribe to this blog</a></p>
- </section>
- </BlogFeed>
- </main>
- </body>
-</html>