diff options
Diffstat (limited to 'examples/blog/src/pages/blog.astro')
-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 0009d4382..a681736ab 100644 --- a/examples/blog/src/pages/blog.astro +++ b/examples/blog/src/pages/blog.astro @@ -11,7 +11,7 @@ const posts = (await Astro.glob('./blog/*.{md,mdx}')).sort( --- <!DOCTYPE html> -<html lang="en-us"> +<html lang="en"> <head> <BaseHead title={SITE_TITLE} description={SITE_DESCRIPTION} /> <style> @@ -51,7 +51,7 @@ const posts = (await Astro.glob('./blog/*.{md,mdx}')).sort( ))} </ul> </section> - <Footer /> </main> + <Footer /> </body> </html> |