diff options
Diffstat (limited to 'docs/src')
-rw-r--r-- | docs/src/layouts/MainLayout.astro | 2 | ||||
-rw-r--r-- | docs/src/layouts/SplashLayout.astro | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/src/layouts/MainLayout.astro b/docs/src/layouts/MainLayout.astro index 0e9c39fc4..04416316d 100644 --- a/docs/src/layouts/MainLayout.astro +++ b/docs/src/layouts/MainLayout.astro @@ -14,7 +14,7 @@ const currentFile = `src/pages${currentPage.replace(/\/$/, "")}.md`; const githubEditUrl = `https://github.com/snowpackjs/astro/blob/main/docs/${currentFile}`; --- -<html lang="{content.lang ?? 'en-us'}" class="initial"> +<html dir="{content.dir ?? 'ltr'}" lang="{content.lang ?? 'en-us'}" class="initial"> <head> <HeadCommon /> <HeadSEO {content} canonicalURL={Astro.request.canonicalURL} /> diff --git a/docs/src/layouts/SplashLayout.astro b/docs/src/layouts/SplashLayout.astro index 69d3f90b6..d2b00e9bc 100644 --- a/docs/src/layouts/SplashLayout.astro +++ b/docs/src/layouts/SplashLayout.astro @@ -6,7 +6,7 @@ import { SITE } from "../config.ts"; const { title } = Astro.props; --- -<html lang="en-us" class="initial"> +<html dir="ltr" lang="en-us" class="initial"> <head> <HeadCommon /> <title>{`${title} 🚀 ${SITE.title}`}</title> |