Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/danielkvist/hugo-terrassa-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTina <feministclickback@mail36.net>2020-05-08 18:31:19 +0300
committerTina <feministclickback@mail36.net>2020-05-08 18:31:19 +0300
commit3776121eda4e3a21698445945dee7826c1c6ff72 (patch)
tree490f552432814611ee343ae1229d63cbc704c72e
parent159516b36338373a1319e2c8ebcbacc4d2a7637f (diff)
Html lang tag based on current locale
-rw-r--r--layouts/_default/baseof.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index 6e1a936..3f2a060 100644
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -1,5 +1,5 @@
<!DOCTYPE html>
-<html lang="en">
+<html lang="{{ .Site.Language.Lang }}">
{{- partial "head.html" . -}}
<body>
@@ -8,4 +8,4 @@
{{- partial "footer.html" . -}}
</body>
-</html> \ No newline at end of file
+</html>