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 }}" />
|
|
|
|
</head>
|