2020-02-10 20:38:11 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml"{{with .Site.LanguageCode}} xml:lang="{{.}}" lang="{{.}}"{{end}}>
|
|
|
|
<head>
|
|
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
2020-02-10 22:30:40 +02:00
|
|
|
{{ hugo.Generator }}
|
2020-02-10 20:38:11 +02:00
|
|
|
|
|
|
|
{{ if .IsHome -}}
|
|
|
|
<title>{{ .Site.Title }}</title>
|
|
|
|
{{- else -}}
|
|
|
|
<title>{{ .Title }} · {{ .Site.Title }}</title>
|
|
|
|
{{- end }}
|
|
|
|
|
|
|
|
<meta name="description" content="{{if .IsHome}}{{ $.Site.Params.description }}{{else}}{{.Description}}{{end}}" />
|
|
|
|
|
2020-02-10 22:30:40 +02:00
|
|
|
{{ partial "seo.html" . }}
|
|
|
|
|
|
|
|
<link type="text/css"
|
|
|
|
rel="stylesheet"
|
2020-06-15 21:00:52 +03:00
|
|
|
href="{{ `css/print.css` | relURL }}"
|
2020-02-10 22:30:40 +02:00
|
|
|
media="print">
|
|
|
|
|
|
|
|
<link type="text/css"
|
|
|
|
rel="stylesheet"
|
2020-06-15 21:00:52 +03:00
|
|
|
href="{{ `css/poole.css` | relURL }}">
|
2020-02-10 22:30:40 +02:00
|
|
|
|
|
|
|
<link type="text/css"
|
|
|
|
rel="stylesheet"
|
2020-06-15 21:00:52 +03:00
|
|
|
href="{{ `css/hyde.css` | relURL }}">
|
2020-02-10 20:38:11 +02:00
|
|
|
|
|
|
|
{{ partial "theme-color.html" . }}
|
|
|
|
|
|
|
|
{{ range $.Site.Params.customCss -}}
|
2020-06-15 21:00:52 +03:00
|
|
|
<link type="text/css" rel="stylesheet" href="{{ . | relURL }}">
|
2020-02-10 20:38:11 +02:00
|
|
|
{{- end}}
|
|
|
|
|
2020-02-10 22:30:40 +02:00
|
|
|
<link rel="stylesheet"
|
|
|
|
href="https://fonts.googleapis.com/css?family=Open+Sans:400,400i,700&display=swap">
|
2020-02-10 20:38:11 +02:00
|
|
|
|
|
|
|
<link rel="stylesheet"
|
|
|
|
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.1/css/all.min.css"
|
|
|
|
integrity="sha256-mmgLkCYLUQbXn0B1SRqzHar6dCnv9oZFPEC1g1cwlkk="
|
|
|
|
crossorigin="anonymous" />
|
|
|
|
|
2020-02-10 22:30:40 +02:00
|
|
|
<link rel="apple-touch-icon-precomposed"
|
|
|
|
sizes="144x144"
|
|
|
|
href="/apple-touch-icon-144-precomposed.png">
|
|
|
|
|
2020-02-10 20:38:11 +02:00
|
|
|
<link rel="shortcut icon" href="/favicon.png">
|
|
|
|
|
|
|
|
<!-- RSS -->
|
|
|
|
{{ range .AlternativeOutputFormats -}}
|
|
|
|
{{ printf `<link href="%s" rel="%s" type="%s" title="%s" />` .Permalink .Rel .MediaType.Type $.Site.Title | safeHTML }}
|
|
|
|
{{ end -}}
|
|
|
|
</head>
|
|
|
|
<body>
|
2017-09-07 22:41:16 +03:00
|
|
|
{{ partial "sidebar.html" . }}
|
2017-09-07 22:56:31 +03:00
|
|
|
|
2020-02-10 20:38:11 +02:00
|
|
|
<main class="content container">
|
|
|
|
{{ block "main" . -}}{{- end }}
|
|
|
|
</main>
|
|
|
|
|
|
|
|
{{ partial "footer.html" . }}
|
|
|
|
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.1/js/all.min.js"
|
|
|
|
integrity="sha256-MAgcygDRahs+F/Nk5Vz387whB4kSK9NXlDN3w58LLq0="
|
|
|
|
crossorigin="anonymous"></script>
|
|
|
|
|
2020-10-17 15:40:58 +03:00
|
|
|
|
|
|
|
<script src="{{ `js/jquery.min.js` | relURL }}"></script>
|
|
|
|
<script src="{{ `js/soho.js` | relURL }}"></script>
|
|
|
|
|
2020-02-10 20:38:11 +02:00
|
|
|
{{ range $.Site.Params.customJs -}}
|
2020-06-15 21:00:52 +03:00
|
|
|
<script src="{{ . | relURL }}"></script>
|
2020-02-10 20:38:11 +02:00
|
|
|
{{- end}}
|
|
|
|
|
|
|
|
{{ template "_internal/google_analytics_async.html" . }}
|
|
|
|
</body>
|
2018-08-27 22:35:26 +03:00
|
|
|
</html>
|