From 3dc8b847795a0bd99e376fe45998783864b1c0f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stig-=C3=98rjan=20Smelror?= Date: Sat, 28 Feb 2026 19:07:53 +0100 Subject: [PATCH] style(blog): move post title and description above meta info Reorder the header elements in the blog post layout to display the title and description before the publish date and author. --- src/layouts/BlogPost.astro | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/layouts/BlogPost.astro b/src/layouts/BlogPost.astro index e14c4ae..4ca2dfe 100644 --- a/src/layouts/BlogPost.astro +++ b/src/layouts/BlogPost.astro @@ -20,6 +20,8 @@ const { post } = Astro.props;
+

{post.data.title}

+

{post.data.description}

-

{post.data.title}

-

{post.data.description}

{post.data.tags.length > 0 && (
{post.data.tags.map((tag) => #{tag})}