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

github.com/themefisher/Hargo-hugo-ecommerce-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Doan <tom.doan@borngroup.com>2020-11-23 23:59:19 +0300
committerTom Doan <tom.doan@borngroup.com>2020-11-23 23:59:19 +0300
commit1651bed2216f3292c0ab942555254e32c84a62f0 (patch)
treeb3888ae0823c7753cccf0ac703acba326f1bf681
parentb83c30dee65ec11062bce312c31d8534291ab5a1 (diff)
Update default <html lang> to recommended default
-rw-r--r--layouts/_default/baseof.html18
1 files changed, 9 insertions, 9 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index ef695c5..e6e90c3 100644
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -1,10 +1,10 @@
<!DOCTYPE html>
-<html lang="{{ with site.LanguageCode }}{{ . }}{{ else }}en-US{{ end }}">
- {{- partial "head.html" . -}}
- <body>
- {{- partial "preloader.html" . -}}
- {{- partial "header.html" . -}}
- {{- block "main" . }}{{- end }}
- {{- partial "footer.html" . -}}
- </body>
-</html> \ No newline at end of file
+<html lang="{{ with site.LanguageCode }}{{ . }}{{ else }}en{{ end }}">
+ {{- partial "head.html" . -}}
+ <body>
+ {{- partial "preloader.html" . -}}
+ {{- partial "header.html" . -}}
+ {{- block "main" . }}{{- end }}
+ {{- partial "footer.html" . -}}
+ </body>
+</html>