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">
|
2019-11-21 09:25:28 +00:00
|
|
|
|
<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>
|
2019-12-11 02:18:44 +00:00
|
|
|
|
{{ partial "head/scripts" . }}
|
2019-11-18 19:18:57 +00:00
|
|
|
|
{{ partialCached "head/styles" . }}
|
2019-11-04 13:09:44 +00:00
|
|
|
|
{{ partial "head/meta" . }}
|
|
|
|
|
{{ partial "head/meta_json_ld" . }}
|
2019-12-05 10:04:42 +00:00
|
|
|
|
{{ partial "head/services" . }}
|
2019-12-06 13:14:13 +00:00
|
|
|
|
{{ 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) {
|
|
|
|
|
document.getElementById('root').className = `theme__${localTheme}`;
|
|
|
|
|
}
|
2019-12-06 01:25:06 +00:00
|
|
|
|
</script>
|
2019-12-08 14:29:02 +00:00
|
|
|
|
|
2019-11-26 16:06:24 +00:00
|
|
|
|
<div id="body">
|
2019-12-06 01:25:06 +00:00
|
|
|
|
{{ partial "body/custom-wrapper" . }}
|
2019-11-04 13:09:44 +00:00
|
|
|
|
<div class="container wrapper">
|
|
|
|
|
{{ partial "navbar/site-nav" . }}
|
|
|
|
|
{{ partial "header/site-header" . }}
|
|
|
|
|
{{ block "main" . }}{{ end }}
|
2019-12-06 01:25:06 +00:00
|
|
|
|
{{ partial "body/custom-body" . }}
|
2019-11-04 13:09:44 +00:00
|
|
|
|
{{ partial "footer/site-footer" . }}
|
|
|
|
|
</div>
|
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>
|