blob: d253d7261bf175689b1590fbe660dc603654f4d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!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 }} </title>
{{ with .Site.Params.description }}<meta name="description" content="{{ . }}">{{ end }}
{{ with .Site.Params.author }}<meta name="author" content="{{ . }}">{{ end }}
{{ with resources.Get "scss/main.scss" | toCSS | minify }}<style>{{ .Content | safeCSS }}</style>{{ end }}
{{ partial "meta" . }}
</head>
<body>
<div class="layout">
{{ partial "header" . }}
{{ block "main" . }}{{ end }}
{{ partial "footer" . }}
</div>
</body>
</html>
|