Add language
This commit is contained in:
parent
c78f0f5f46
commit
0a71e48957
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html lang="{{ .Site.Language.Lang }}">
|
||||||
{{- partial "head.html" . -}}
|
{{ partial "head.html" . }}
|
||||||
<body>
|
<body>
|
||||||
{{- partial "header.html" . -}}
|
{{ partial "header.html" . }}
|
||||||
<div id="content">
|
<div id="content">
|
||||||
{{- block "main" . }}{{- end }}
|
{{ block "main" . }}{{ end }}
|
||||||
</div>
|
</div>
|
||||||
{{- partial "footer.html" . -}}
|
{{ partial "footer.html" . }}
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<base href="{{ .Site.BaseURL }}">
|
<base href="{{ .Site.BaseURL }}">
|
||||||
|
|
||||||
|
@ -8,3 +9,4 @@
|
||||||
|
|
||||||
{{ partial "social_metadata.html" . }}
|
{{ partial "social_metadata.html" . }}
|
||||||
{{ partial "style.html" . }}
|
{{ partial "style.html" . }}
|
||||||
|
</head>
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
{{/* https://github.com/msfjarvis/hugo-social-metadata */}}
|
||||||
|
|
||||||
<!-- Configure meta and title tags -->
|
<!-- Configure meta and title tags -->
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
{{ if .Site.Params.TwitterCardType }}
|
{{ if .Site.Params.TwitterCardType }}
|
||||||
|
|
Loading…
Reference in New Issue