blob: f2282810611daaea1855b344cef97799c3c31d92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode | default "en-us" }}">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
{{ with .Site.Params.favicon }}<link rel="icon" type="image/png" href="{{ . }}" />{{ end }}
<title itemprop="name">{{ .Title }} | {{ .Site.Params.description }}</title>
{{ with .Site.Params.description }}<meta name="description" content="{{ . }}">{{ end }}
{{ with .Site.Params.author }}<meta name="author" content="{{ . }}">{{ end }}
{{ $styles := resources.Get "scss/main.scss" | resources.ToCSS | minify | fingerprint}}
<link rel="stylesheet" href="{{ $styles.RelPermalink }}" media="screen">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
{{ partial "meta" . }}
</head>
<body>
<div class="layout">
{{ partial "header" . }}
{{ block "main" . }}{{ end }}
{{ partial "footer" . }}
</div>
</body>
</html>
|