diff --git a/src/pages/event/[post].astro b/src/pages/event/[post].astro index 409a59d..c4e46eb 100644 --- a/src/pages/event/[post].astro +++ b/src/pages/event/[post].astro @@ -15,7 +15,7 @@ export async function getStaticPaths() { allBlogPosts { id title - body + body(markdown: true) eventStartDate image { url @@ -68,7 +68,7 @@ const { post } = Astro.props

{post.title}


Evenemanget startar: {post.eventStartDate}


-

{post.body}

+
@@ -78,6 +78,7 @@ const { post } = Astro.props