blob: 22a33332d508e9eb36b9420f9dd36708328582d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!DOCTYPE html>
<html lang="{{ with .Site.LanguageCode }}{{ . }}{{ else }}en-US{{ end }}">
<head>
<title>{{ .Site.Title }}</title>
<meta name="viewport" content="width=device-width">
<meta name=“description” content="{{ .Site.Params.Description }}"/>
<meta charset="utf-8" />
{{ partial "style.html" . }}
</head>
<body>
{{- block "main" . }}{{- end }}
</body>
</html>
|