From 467b4bb0ad205dde7d445438094f7cb018223aa6 Mon Sep 17 00:00:00 2001 From: tobias Date: Sun, 19 May 2024 08:48:49 +0200 Subject: [PATCH] Fix typo & remove back button --- astro/src/pages/index.astro | 2 +- astro/src/pages/posts/[id].astro | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/astro/src/pages/index.astro b/astro/src/pages/index.astro index cf2779e..1ee4ee3 100644 --- a/astro/src/pages/index.astro +++ b/astro/src/pages/index.astro @@ -42,4 +42,4 @@ const posts = await getPosts(); } - + diff --git a/astro/src/pages/posts/[id].astro b/astro/src/pages/posts/[id].astro index dcbc698..3f5ae6c 100644 --- a/astro/src/pages/posts/[id].astro +++ b/astro/src/pages/posts/[id].astro @@ -20,11 +20,10 @@ const post = id && (await getPost(id)); post ? (
- BACK

{post.title}

{post.content && }
- +
) : (
404
)