diff --git a/astro/src/components/Post.astro b/astro/src/components/Post.astro index 0ce9947..b52bd60 100644 --- a/astro/src/components/Post.astro +++ b/astro/src/components/Post.astro @@ -16,7 +16,7 @@ const { post } = Astro.props; alt={post.thumbnail.alt} /> -
+

{post.title}

{post.publishedDate && ( @@ -24,8 +24,8 @@ const { post } = Astro.props; {new Date(post.publishedDate).toLocaleDateString("de-DE")}

)} -
- {post.summary &&

+

+ {post.summary &&

{post.summary}

}