summaryrefslogtreecommitdiff
path: root/src/layouts/Layout.astro
diff options
context:
space:
mode:
authorJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2023-08-26 17:30:08 +0100
committerJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2023-08-26 17:30:08 +0100
commit628b8daad0b319b092b72bfe262b445fe7c8b197 (patch)
treeb03c2c9464a61433dc8cf24e63d406b5fe6470e1 /src/layouts/Layout.astro
parentbe68b8ca2e36778d32e58bc1596037a5d5ea0074 (diff)
html LANG attribute is sensitive to locale
Diffstat (limited to 'src/layouts/Layout.astro')
-rw-r--r--src/layouts/Layout.astro2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro
index d5405aa..2a4a542 100644
--- a/src/layouts/Layout.astro
+++ b/src/layouts/Layout.astro
@@ -16,7 +16,7 @@ const t = translate(locale);
---
<!DOCTYPE html>
-<html lang="sco">
+<html lang={locale}>
<head>
<meta charset="UTF-8" />
<meta name="description" content={t(site, { key: 'description' })} />