diff options
Diffstat (limited to 'examples/blog-multiple-authors/src/pages/about.astro')
-rw-r--r-- | examples/blog-multiple-authors/src/pages/about.astro | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/blog-multiple-authors/src/pages/about.astro b/examples/blog-multiple-authors/src/pages/about.astro index d7a219057..17035a88e 100644 --- a/examples/blog-multiple-authors/src/pages/about.astro +++ b/examples/blog-multiple-authors/src/pages/about.astro @@ -3,8 +3,9 @@ import MainHead from '../components/MainHead.astro'; import Nav from '../components/Nav.astro'; let title = "About"; +let lang = 'en'; --- -<html> +<html lang={ lang ?? 'en' }> <head> <MainHead title={title} |