diff options
Diffstat (limited to 'www/src/pages/blog/index.astro')
-rw-r--r-- | www/src/pages/blog/index.astro | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/www/src/pages/blog/index.astro b/www/src/pages/blog/index.astro index 8eafa927a..264f5cfec 100644 --- a/www/src/pages/blog/index.astro +++ b/www/src/pages/blog/index.astro @@ -6,9 +6,10 @@ import BlogPostPreview from '../../components/BlogPostPreview.astro'; let title = 'Astro Blog'; let description = 'Everything you need to know about Astro, direct from mission control.'; let permalink = 'https://astro.build/blog'; +let lang = 'en'; --- -<html> +<html lang={ lang ?? 'en' }> <head> <BaseHead title={title} description={description} permalink={permalink} /> <link rel="stylesheet" href="/blog.css" /> |