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