2023-01-11 13:36:19 +00:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
2023-02-18 00:04:20 +00:00
|
|
|
{{ $title := print .Site.Title " | " .Title }}
|
|
|
|
{{ if .IsHome }}
|
|
|
|
{{ $title =
|
|
|
|
.Site.Title
|
|
|
|
}}
|
|
|
|
{{ end }}
|
2023-01-11 13:36:19 +00:00
|
|
|
<title>{{ $title }}</title>
|
|
|
|
{{ $style := resources.Get "scss/main.scss" | resources.ToCSS (dict
|
2023-02-18 00:04:20 +00:00
|
|
|
"targetPath" "css/main.css" "enableSourceMap" true ) | minify |
|
|
|
|
resources.Fingerprint
|
|
|
|
}}
|
2023-02-06 13:39:44 +00:00
|
|
|
<style>
|
|
|
|
body {
|
|
|
|
background-color: hsl(0, 0%, 8.5%);
|
|
|
|
}
|
|
|
|
</style>
|
2023-01-11 13:36:19 +00:00
|
|
|
<link rel="stylesheet" href="{{ $style.RelPermalink }}" />
|
2023-03-01 17:25:44 +00:00
|
|
|
<link
|
|
|
|
rel="apple-touch-icon"
|
|
|
|
sizes="180x180"
|
|
|
|
href="/fav/apple-touch-icon.png"
|
|
|
|
/>
|
|
|
|
<link
|
|
|
|
rel="icon"
|
|
|
|
type="image/png"
|
|
|
|
sizes="32x32"
|
|
|
|
href="/fav/favicon-32x32.png"
|
|
|
|
/>
|
|
|
|
<link
|
|
|
|
rel="icon"
|
|
|
|
type="image/png"
|
|
|
|
sizes="16x16"
|
|
|
|
href="/fav/favicon-16x16.png"
|
|
|
|
/>
|
|
|
|
<link rel="manifest" href="/fav/site.webmanifest" />
|
2023-01-11 13:36:19 +00:00
|
|
|
</head>
|