From 626aa306ab37bc155e2cf879333eecc9bfdce9ae Mon Sep 17 00:00:00 2001 From: xHyroM Date: Thu, 5 Jan 2023 14:13:41 +0100 Subject: [PATCH] fix(pages-blog): use p instead of h3 - fix issue :P --- src/pages/blog/index.astro | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/blog/index.astro b/src/pages/blog/index.astro index f33ff22..f1abf25 100644 --- a/src/pages/blog/index.astro +++ b/src/pages/blog/index.astro @@ -19,13 +19,13 @@ const posts = (await Astro.glob('./posts/*.md')).sort( {posts.map(post => { return ( {post.frontmatter.title} -

+

{new Date(post.frontmatter.date).toLocaleDateString('en-us', { year: 'numeric', month: 'short', day: 'numeric', })} -

+


) })}