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
9 <link rel="stylesheet" type="text/css" href="/css/all.css" />
10
11 {{ with .Site.Params.favicon }}<link rel="icon" type="image/png" href="{{ . }}" />{{ end }}
12
13 <title itemprop="name"> {{ .Title }} </title>
14 {{ with .Site.Params.description }}<meta name="description" content="{{ . }}">{{ end }}
15 {{ with .Site.Params.author }}<meta name="author" content="{{ . }}">{{ end }}
16
17 {{ $styles := resources.Get "scss/main.scss" | resources.ToCSS | minify | fingerprint}}
18 <link rel="stylesheet" href="{{ $styles.RelPermalink }}" media="screen">
19 {{ partial "meta" . }}
20 </head>
21 <body>
22 <div class="layout">
23 {{ partial "header" . }}
24 {{ block "main" . }}{{ end }}
25 {{ partial "footer" . }}
26 </div>
27 </body>
28</html>