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">
|
|
|
|
|
<title>{{ block "title" . }}{{ .Title }} – {{ .Site.Title }}{{ end }}</title>
|
2019-11-08 02:15:12 +00:00
|
|
|
|
{{ partial "head/scripts" . }}
|
2019-11-05 15:13:43 +00:00
|
|
|
|
{{ partial "head/styles" . }}
|
2019-11-04 13:09:44 +00:00
|
|
|
|
{{ partial "head/meta" . }}
|
|
|
|
|
{{ partial "head/meta_json_ld" . }}
|
2019-11-08 02:15:12 +00:00
|
|
|
|
{{ 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-04 13:09:44 +00:00
|
|
|
|
<div id="body">
|
|
|
|
|
<div class="container wrapper">
|
|
|
|
|
{{ partial "navbar/site-nav" . }}
|
|
|
|
|
{{ partial "header/site-header" . }}
|
|
|
|
|
{{ block "main" . }}{{ end }}
|
|
|
|
|
{{ partial "footer/site-footer" . }}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</body>
|
|
|
|
|
|
2019-11-05 15:13:43 +00:00
|
|
|
|
</html>
|