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
)