29 lines
1,019 B
HTML
29 lines
1,019 B
HTML
<!DOCTYPE html>
|
|
<html
|
|
lang="{{.Site.Language.Lang }}"
|
|
xml:lang="{{.Site.Language.Lang }}"
|
|
prefix="og: http://ogp.me/ns# article: http://ogp.me/ns/article#"
|
|
>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
|
{{ $style := resources.Get "scss/main.scss" | toCSS | minify | fingerprint }}
|
|
{{ $js := resources.Get "js/main.js" | minify | minify | fingerprint }}
|
|
<link rel="stylesheet" href="{{ $style.Permalink }}" integrity="{{ $style.Data.Integrity }}" media="screen">
|
|
<script type="text/javascript" src="{{ $js.Permalink }}" integrity="{{ $js.Data.Integrity }}"></script>
|
|
{{ partial "seo.html" . }}
|
|
{{ block "head" . }}
|
|
{{ end }}
|
|
</head>
|
|
<body>
|
|
{{ block "body" . }}
|
|
{{ partial "site-header.html" . }}
|
|
{{ block "main" . }}
|
|
{{ end }}
|
|
{{ partial "site-footer.html" .}}
|
|
{{ end }}
|
|
</body>
|
|
</html>
|