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
8 {{ with .Site.Params.favicon }}<link rel="icon" type="image/png" href="{{ . }}" />{{ end }}
9
10 <title itemprop="name"> {{ .Title }} </title>
11 {{ with .Site.Params.description }}<meta name="description" content="{{ . }}">{{ end }}
12 {{ with .Site.Params.author }}<meta name="author" content="{{ . }}">{{ end }}
13
14 {{ with resources.Get "scss/main.scss" | toCSS | minify }}
15 <style>{{ .Content | safeCSS }}</style>
16 {{ end }}
17
18 {{ partial "meta" . }}
19 </head>
20 <body>
21 <div class="layout">
22 {{ partial "header" . }}
23 {{ block "main" . }}{{ end }}
24 {{ partial "footer" . }}
25 </div>
26 </body>
27</html>