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

38 lines
1.3 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">
2020-01-23 13:00:38 +00:00
<meta http-equiv="X-UA-Compatible" content="IE=edge">
2019-11-04 13:09:44 +00:00
<title>{{ block "title" . }}{{ .Title }} {{ .Site.Title }}{{ end }}</title>
2019-12-11 02:18:44 +00:00
{{ partial "head/scripts" . }}
{{ partialCached "head/styles" . }}
2019-11-04 13:09:44 +00:00
{{ partial "head/meta" . }}
{{ partial "head/meta_json_ld" . }}
{{ partial "head/services" . }}
{{ partial "head/custom-head" . }}
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');
2019-12-08 14:29:02 +00:00
if (localTheme) {
2020-01-23 13:00:38 +00:00
document.getElementById('root').className = 'theme__' + localTheme;
2019-12-08 14:29:02 +00:00
}
</script>
2019-12-08 14:29:02 +00:00
<div id="container">
{{ partial "body/main-left" . }}
<div class="wrapper">
2019-11-04 13:09:44 +00:00
{{ partial "navbar/site-nav" . }}
{{ partial "header/site-header" . }}
{{ block "main" . }}{{ end }}
{{ partial "body/custom-body" . }}
2019-11-04 13:09:44 +00:00
{{ partial "footer/site-footer" . }}
</div>
{{ partial "body/main-right" . }}
2019-12-08 14:29:02 +00:00
</div>
2019-11-04 13:09:44 +00:00
</body>
2019-11-05 15:13:43 +00:00
</html>