diff options
author | 2022-08-26 09:15:50 +0100 | |
---|---|---|
committer | 2022-08-26 16:15:50 +0800 | |
commit | 74cb94ca3c0f225958abe3e23a37d0355d39944c (patch) | |
tree | 7c42651f251f49b6517ca742554c3ef889dd0766 /examples/blog/src | |
parent | ca24a60b138445af132a7054582c1ed972b5dc49 (diff) | |
download | astro-74cb94ca3c0f225958abe3e23a37d0355d39944c.tar.gz astro-74cb94ca3c0f225958abe3e23a37d0355d39944c.tar.zst astro-74cb94ca3c0f225958abe3e23a37d0355d39944c.zip |
Update blog.astro (#4486)
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> |