Update blog.astro (#4486)

This commit is contained in:
Peter Singh 2022-08-26 09:15:50 +01:00 committed by GitHub
parent ca24a60b13
commit 74cb94ca3c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -35,7 +35,7 @@ const posts = (await Astro.glob('./blog/*.{md,mdx}')).sort(
<body>
<Header />
<main>
<content>
<section>
<ul>
{posts.map((post) => (
<li>
@ -50,7 +50,7 @@ const posts = (await Astro.glob('./blog/*.{md,mdx}')).sort(
</li>
))}
</ul>
</content>
</section>
<Footer />
</main>
</body>