diff options
Diffstat (limited to 'examples/blog/src')
-rw-r--r-- | examples/blog/src/pages/blog.astro | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/blog/src/pages/blog.astro b/examples/blog/src/pages/blog.astro index 6c0d05639..0009d4382 100644 --- a/examples/blog/src/pages/blog.astro +++ b/examples/blog/src/pages/blog.astro @@ -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> |