strimertul-website/themes/strimertul/layouts/partials/head.html

22 lines
576 B
HTML

<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
{{ $title := print .Site.Title " | " .Title }}
{{ if .IsHome }}
{{ $title =
.Site.Title
}}
{{ end }}
<title>{{ $title }}</title>
{{ $style := resources.Get "scss/main.scss" | resources.ToCSS (dict
"targetPath" "css/main.css" "enableSourceMap" true ) | minify |
resources.Fingerprint
}}
<style>
body {
background-color: hsl(0, 0%, 8.5%);
}
</style>
<link rel="stylesheet" href="{{ $style.RelPermalink }}" />
</head>