diff options
author | 2022-09-03 15:58:00 +0100 | |
---|---|---|
committer | 2022-09-03 16:58:00 +0200 | |
commit | 1bee84920ad9ad106f8e1eef85294d1809795533 (patch) | |
tree | cbe720f572cab96a5d726104f335e55ca7e63469 /examples/ssr/src | |
parent | 7114aee20886d2ff22b41d8c6db22a88eb458c8e (diff) | |
download | astro-1bee84920ad9ad106f8e1eef85294d1809795533.tar.gz astro-1bee84920ad9ad106f8e1eef85294d1809795533.tar.zst astro-1bee84920ad9ad106f8e1eef85294d1809795533.zip |
examples: Blog template changes (#4577)
Co-authored-by: Chris Swithinbank <swithinbank@gmail.com>
Diffstat (limited to 'examples/ssr/src')
-rw-r--r-- | examples/ssr/src/pages/cart.astro | 2 | ||||
-rw-r--r-- | examples/ssr/src/pages/index.astro | 2 | ||||
-rw-r--r-- | examples/ssr/src/pages/login.astro | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/examples/ssr/src/pages/cart.astro b/examples/ssr/src/pages/cart.astro index ca0f934a4..68286ac61 100644 --- a/examples/ssr/src/pages/cart.astro +++ b/examples/ssr/src/pages/cart.astro @@ -14,7 +14,7 @@ const user = { name: 'test' }; // getUser? const cart = await getCart(Astro.request); --- -<html> +<html lang="en"> <head> <title>Cart | Online Store</title> <style> diff --git a/examples/ssr/src/pages/index.astro b/examples/ssr/src/pages/index.astro index 8f985e5b4..23a4c2721 100644 --- a/examples/ssr/src/pages/index.astro +++ b/examples/ssr/src/pages/index.astro @@ -8,7 +8,7 @@ import '../styles/common.css'; const products = await getProducts(Astro.request); --- -<html> +<html lang="en"> <head> <title>Online Store</title> <style> diff --git a/examples/ssr/src/pages/login.astro b/examples/ssr/src/pages/login.astro index 77955012b..1b3cb9ede 100644 --- a/examples/ssr/src/pages/login.astro +++ b/examples/ssr/src/pages/login.astro @@ -3,7 +3,7 @@ import Header from '../components/Header.astro'; import Container from '../components/Container.astro'; --- -<html> +<html lang="en"> <head> <title>Online Store</title> <style> |