hugo-theme-zzo/layouts/_default/baseof.html

32 lines
1.1 KiB
HTML
Raw Normal View History

2019-11-04 13:09:44 +00:00
<!DOCTYPE html>
<html lang="{{ .Site.Language.Lang }}" dir="{{ $.Param "languagedir" | default "ltr" }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
2019-11-04 13:09:44 +00:00
<title>{{ block "title" . }}{{ .Title }} {{ .Site.Title }}{{ end }}</title>
{{ partialCached "head/scripts" . }}
{{ partialCached "head/styles" . }}
2019-11-04 13:09:44 +00:00
{{ partial "head/meta" . }}
{{ partial "head/meta_json_ld" . }}
{{ partial "head/service" . }}
2019-11-04 13:09:44 +00:00
</head>
2019-11-05 15:13:43 +00:00
<body id="root" class="theme__{{ index .Site.Params.themeOptions 0 }}">
2019-11-25 00:51:48 +00:00
<script>
var localTheme = localStorage.getItem('theme');
if (localTheme) {
document.getElementById('root').className = `theme__${localTheme}`;
}
2019-11-25 00:51:48 +00:00
</script>
<div id="body">
2019-11-04 13:09:44 +00:00
<div class="container wrapper">
{{ partial "navbar/site-nav" . }}
{{ partial "header/site-header" . }}
{{ block "main" . }}{{ end }}
{{ partial "footer/site-footer" . }}
</div>
</div>
2019-11-04 13:09:44 +00:00
</body>
2019-11-05 15:13:43 +00:00
</html>