41 lines
1.1 KiB
HTML
41 lines
1.1 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
|
||
|
{{ with .OutputFormats.Get "RSS" }}
|
||
|
<link href="{{ .RelPermalink }}" rel="alternate" type="application/rss+xml" title="{{ $.Site.Title }}" />
|
||
|
<link href="{{ .RelPermalink }}" rel="feed" type="application/rss+xml" title="{{ $.Site.Title }}" />
|
||
|
{{ end }}
|
||
|
|
||
|
{{ $style := resources.Get "sass/main.scss" | toCSS | minify | fingerprint "sha512" }}
|
||
|
<link rel="stylesheet" href="{{ $style.Permalink }}" integrity="{{ $style.Data.Integrity }}">
|
||
|
|
||
|
{{ block "title" . }}
|
||
|
<title>
|
||
|
{{ if .IsHome }}
|
||
|
{{ $.Site.Title }}
|
||
|
{{ else }}
|
||
|
{{ .Title }} / {{ $.Site.Title }}
|
||
|
{{ end }}
|
||
|
</title>
|
||
|
{{ end }}
|
||
|
|
||
|
{{ partial "head.html" . }}
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
{{ partial "header.html" . }}
|
||
|
<div class="page-content margin-bot-big">
|
||
|
<div class="wrapper">
|
||
|
{{ block "main" . }}{{ end }}
|
||
|
</div>
|
||
|
</div>
|
||
|
{{ block "footer" . }}
|
||
|
{{ partial "footer.html" . }}
|
||
|
{{ end }}
|
||
|
</body>
|
||
|
</html>
|