hugo-theme-hax0r/layouts/partials/head.html

11 lines
475 B
HTML
Raw Normal View History

2023-03-23 08:00:12 +01:00
<head>
<meta charset="utf-8">
2023-03-23 11:49:13 +01:00
2023-03-23 08:00:12 +01:00
<meta name="viewport" content="width=device-width, initial-scale=1">
2023-03-23 11:49:13 +01:00
{{ $style := resources.Get "css/main.scss" | resources.ExecuteAsTemplate "css/main.scss" . | resources.ToCSS | resources.Minify | resources.Fingerprint -}}
<link rel="stylesheet" href="{{ $style.Permalink }}" />
2023-03-23 08:00:12 +01:00
{{ $title := print .Site.Title " | " .Title }}
{{ if .IsHome }}{{ $title = .Site.Title }}{{ end }}
<title>{{ $title }}</title>
</head>