summaryrefslogtreecommitdiff
path: root/examples/snowpack/src/pages/index.astro
diff options
context:
space:
mode:
Diffstat (limited to 'examples/snowpack/src/pages/index.astro')
-rw-r--r--examples/snowpack/src/pages/index.astro3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/snowpack/src/pages/index.astro b/examples/snowpack/src/pages/index.astro
index f2a8f7f26..029692161 100644
--- a/examples/snowpack/src/pages/index.astro
+++ b/examples/snowpack/src/pages/index.astro
@@ -7,10 +7,11 @@ import BaseLayout from '../components/BaseLayout.astro';
let title = 'Snowpack';
let description = 'Snowpack is a lightning-fast frontend build tool, designed for the modern web.';
+let lang = 'en';
---
<!doctype html>
-<html>
+<html lang={ lang ?? 'en' }>
<head>
<style lang="scss">
@use '../../public/styles/var' as *;