1
0
Fork 0
mirror of https://git.sr.ht/~ashkeel/strimertul-website synced 2024-10-31 21:33:09 +00:00
strimertul-website/themes/strimertul/layouts/partials/head.html

22 lines
576 B
HTML
Raw Normal View History

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>