2019-07-30 17:32:26 -04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="{{ .Site.LanguageCode | default "en-us" }}">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
2020-05-26 03:04:43 +02:00
|
|
|
<style type=text/css>body{font-family:monospace;}</style>
|
2019-07-30 17:32:26 -04:00
|
|
|
<title>{{ .Title }}</title>
|
|
|
|
{{ with .Site.Params.description }}<meta name="description" content="{{ . }}">{{ end }}
|
|
|
|
{{ with .Site.Params.author }}<meta name="author" content="{{ . }}">{{ end }}
|
2021-08-01 13:37:49 +02:00
|
|
|
<!-- Load the main stylesheet. -->
|
|
|
|
{{ $style := (resources.Get "css/style.css" | resources.Minify) }}
|
|
|
|
<link
|
|
|
|
rel="stylesheet"
|
|
|
|
href="{{ $style.Permalink }}?cb={{ now.Unix }}"
|
|
|
|
integrity="{{ $style.Data.Integrity }}" />
|
|
|
|
|
|
|
|
{{ range .Site.Params.customCSS -}}
|
|
|
|
<link rel="stylesheet" href="{{ . | relURL }}?rnd={{ now.Unix }}">
|
2020-07-27 09:12:55 +02:00
|
|
|
{{- end }}
|
2019-07-30 17:32:26 -04:00
|
|
|
{{ with .OutputFormats.Get "RSS" -}}
|
|
|
|
{{ printf `<link rel="%s" type="%s" href="%s" title="%s">` .Rel .MediaType.Type .RelPermalink $.Site.Title | safeHTML }}
|
|
|
|
{{- end }}
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{{ partial "header" . }}
|
|
|
|
{{ block "main" . }}{{ end }}
|
|
|
|
{{ partial "footer" . }}
|
|
|
|
</body>
|
|
|
|
</html>
|