1234567891011121314151617181920212223242526272829303132333435 |
- <!DOCTYPE html>
- <html lang="{{.Site.LanguageCode}}">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta http-equiv="X-UA-Compatible" content="ie=edge">
- <meta name="theme-color" content="#494f5c">
- <meta name="msapplication-TileColor" content="#494f5c">
- <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
- <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
- <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
- <link rel="manifest" href="/site.webmanifest">
- <link rel="mask-icon" href="/safari-pinned-tab.svg" color="#494f5c">
- <link rel="shortcut icon" href="/favicon.ico">
- <title>{{.Title}}</title>
- <link rel="dns-prefetch" href="https://ojirvqiyr.qnssl.com/">
- <link rel="dns-prefetch" href="//cdn1.lncld.net">
- <link rel="dns-prefetch" href="//unpkg.com">
- {{ range .AlternativeOutputFormats -}}
- {{ printf `<link rel="%s" type="%s+%s" href="%s" title="%s" />` .Rel .MediaType.Type .MediaType.Suffix .Permalink $.Site.Title | safeHTML }}
- {{ end -}}
- {{ with resources.Get "scss/style.scss" | toCSS | minify -}}
- <style>{{ .Content | safeCSS }}</style>
- {{- end }}
- {{ block "head" . -}}{{- end }}
- </head>
- <body id="page">
- {{ block "header" . -}}{{ end -}}
- {{ block "main" . -}}{{ end -}}
- {{ block "footer" . -}}{{ end }}
- </body>
- </html>
|