* language related deprecation fix Reference: https://github.com/gohugoio/hugo/releases/tag/v0.158.0 .Site.LanguageCode -> .Site.Language.Locale .Language.LanguageDirection -> .Language.Direction .Language.LanguageCode -> .Language.Locale Also, in the configuration hugo.toml, the user should change `languageCode` to `locale`. * Update languageCode to locale in configuration * fix(languages): update languageName to label in languages.toml * .Language.LanguageName -> .Language.Label * .Language.Lang -> .Language.Name --------- Co-authored-by: Jimmy Cai <jimmy@cai.im>
29 lines
1.0 KiB
HTML
29 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="{{ .Site.Language.Locale }}" dir="{{ default `ltr` .Language.Direction }}">
|
|
<head>
|
|
{{- partial "head/head.html" . -}}
|
|
{{- block "head" . -}}{{ end }}
|
|
</head>
|
|
<body class="{{ block `body-class` . }}{{ end }}">
|
|
{{- partial "head/colorScheme" . -}}
|
|
|
|
{{/* The container is wider when there's any activated widget */}}
|
|
{{- $hasWidget := false -}}
|
|
{{- range .Site.Params.widgets -}}
|
|
{{- if gt (len .) 0 -}}
|
|
{{- $hasWidget = true -}}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
<div class="container main-container flex on-phone--column {{ if $hasWidget }}extended{{ else }}compact{{ end }}">
|
|
{{- block "left-sidebar" . -}}
|
|
{{ partial "sidebar/left.html" . }}
|
|
{{- end -}}
|
|
{{- block "right-sidebar" . -}}{{ end }}
|
|
<main class="main full-width">
|
|
{{- block "main" . }}{{- end }}
|
|
</main>
|
|
</div>
|
|
{{ partial "footer/include.html" . }}
|
|
</body>
|
|
</html>
|