diff options
-rw-r--r-- | src/components/Comments.astro | 1 | ||||
-rw-r--r-- | src/layouts/BaseLayout.astro | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/components/Comments.astro b/src/components/Comments.astro index f9ae4e5..0247ebf 100644 --- a/src/components/Comments.astro +++ b/src/components/Comments.astro @@ -14,6 +14,7 @@ const theme = "transparent_dark"; --- <script + is:inline src="https://giscus.app/client.js" data-category-id={categoryId} data-category={category} diff --git a/src/layouts/BaseLayout.astro b/src/layouts/BaseLayout.astro index 5cbaf5c..29a7408 100644 --- a/src/layouts/BaseLayout.astro +++ b/src/layouts/BaseLayout.astro @@ -5,7 +5,7 @@ import Header from "../components/Header.astro"; const { title, description } = Astro.props; --- -<html> +<html lang="ru"> <Head title={title} description={description} /> <body> |