mirror of
https://git.sr.ht/~ashkeel/strimertul-website
synced 2024-10-31 21:33:09 +00:00
12 lines
472 B
HTML
12 lines
472 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 }}
|
||
|
<link rel="stylesheet" href="{{ $style.RelPermalink }}" />
|
||
|
</head>
|