summaryrefslogtreecommitdiff
path: root/www/src/pages/index.astro
diff options
context:
space:
mode:
Diffstat (limited to 'www/src/pages/index.astro')
-rw-r--r--www/src/pages/index.astro3
1 files changed, 2 insertions, 1 deletions
diff --git a/www/src/pages/index.astro b/www/src/pages/index.astro
index aed9d752e..1a108d5b6 100644
--- a/www/src/pages/index.astro
+++ b/www/src/pages/index.astro
@@ -9,9 +9,10 @@ import Tagline from '../components/Tagline.astro';
let title = 'Astro';
let description = 'Build faster websites with less client-side JavaScript';
let permalink = 'https://astro.build/';
+let lang = 'en';
---
-<html>
+<html lang={ lang ?? 'en' }>
<head>
<BaseHead title={title} description={description} permalink={permalink} />
<link rel="stylesheet" href="/global.css" />