2020-10-10 19:09:30 +00:00
|
|
|
<!DOCTYPE html>
|
2024-02-27 08:40:59 +00:00
|
|
|
<html
|
|
|
|
lang="{{.Site.Language.Lang }}"
|
|
|
|
xml:lang="{{.Site.Language.Lang }}"
|
|
|
|
prefix="og: http://ogp.me/ns# article: http://ogp.me/ns/article#"
|
|
|
|
>
|
|
|
|
<head>
|
2020-10-10 19:09:30 +00:00
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
2020-10-26 05:51:15 +00:00
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
2021-12-23 05:32:17 +00:00
|
|
|
{{ $style := resources.Get "scss/main.scss" | toCSS | minify | fingerprint }}
|
|
|
|
{{ $js := resources.Get "js/main.js" | minify | minify | fingerprint }}
|
2024-03-14 23:29:33 +00:00
|
|
|
<link rel="stylesheet" href="{{ $style.RelPermalink }}" integrity="{{ $style.Data.Integrity }}">
|
|
|
|
<script type="text/javascript" src="{{ $js.RelPermalink }}" integrity="{{ $js.Data.Integrity }}"></script>
|
2024-06-02 05:04:04 +00:00
|
|
|
{{ with .OutputFormats.Get "rss" -}}
|
|
|
|
{{ printf `<link rel=%q type=%q href=%q title=%q>` .Rel .MediaType.Type .Permalink site.Title | safeHTML }}
|
|
|
|
{{ end }}
|
2024-02-26 11:41:39 +00:00
|
|
|
{{ partial "seo.html" . }}
|
2022-07-04 17:49:49 +00:00
|
|
|
{{ block "head" . }}
|
|
|
|
{{ end }}
|
2020-10-10 19:09:30 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2024-02-26 11:41:39 +00:00
|
|
|
{{ block "body" . }}
|
2020-10-10 19:09:30 +00:00
|
|
|
{{ partial "site-header.html" . }}
|
|
|
|
{{ block "main" . }}
|
|
|
|
{{ end }}
|
|
|
|
{{ partial "site-footer.html" .}}
|
2024-02-26 11:41:39 +00:00
|
|
|
{{ end }}
|
2020-10-10 19:09:30 +00:00
|
|
|
</body>
|
|
|
|
</html>
|