summaryrefslogtreecommitdiff
path: root/examples/snowpack/src/pages/guides.astro
diff options
context:
space:
mode:
Diffstat (limited to 'examples/snowpack/src/pages/guides.astro')
-rw-r--r--examples/snowpack/src/pages/guides.astro4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/snowpack/src/pages/guides.astro b/examples/snowpack/src/pages/guides.astro
index e02856ede..93cedddac 100644
--- a/examples/snowpack/src/pages/guides.astro
+++ b/examples/snowpack/src/pages/guides.astro
@@ -23,7 +23,7 @@ let title = 'Guides';
let description = 'Snowpack\'s usage and integration guides.';
let guides;
let communityGuides;
-
+let lang = 'en';
guides = paginate({
files: '/posts/guides/*.md',
@@ -41,7 +41,7 @@ let communityGuides;
---
<!doctype html>
-<html>
+<html lang={ lang ?? 'en' }>
<head>
<BaseHead title={title} description={description} permalink="TODO" />