1<!DOCTYPE html>
2<html lang="{{ .Site.LanguageCode | default "en-us" }}">
3 <head>
4 <meta charset="UTF-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1">
6 <meta http-equiv="X-UA-Compatible" content="IE=edge">
7 {{ with .Site.Params.favicon }}<link rel="icon" type="image/png" href="{{ . }}" />{{ end }}
8 <title itemprop="name"> {{ .Title }} </title>
9 {{ with .Site.Params.description }}<meta name="description" content="{{ . }}">{{ end }}
10 {{ with .Site.Params.author }}<meta name="author" content="{{ . }}">{{ end }}
11 {{ with resources.Get "scss/main.scss" | toCSS | minify }}<style>{{ .Content | safeCSS }}</style>{{ end }}
12 {{ partial "meta" . }}
13 </head>
14 <body>
15 <div class="layout">
16 {{ partial "header" . }}
17 {{ block "main" . }}{{ end }}
18 {{ partial "footer" . }}
19 </div>
20 </body>
21</html>