2022-11-13 20:52:45 +01:00
< head >
< meta charset = "utf-8" >
< meta http-equiv = "X-UA-Compatible" content = "IE=edge" >
< meta name = "viewport" content = "width=device-width, intial-scale=1" >
< meta name = "author" content = "{{ .Site.Params.Author }}" >
{{ $title := print .Site.Title " | " .Title }}
{{ if .IsHome }}{{ $title := .Site.Title }} {{ end }}
< title > {{ $title }}< / title >
< meta name = "description" content = "{{ with .Description }}{{ . }}{{ else }}{{ if .IsPage }}{{ .Summary }}{{ else }}{{ with .Site.Params.description }}{{ . }}{{ end }}{{ end }}{{ end }}" >
{{/* compressed soll besser sein als minify bei SASS */}}
{{ $sassOptions := (dict "targetPath" "main.css" "outputStyle" "compressed" "enableSourceMap" (not hugo.IsProduction) "includePaths" "assets/bootstrap/scss") }}
{{ $sassStyle := resources.Get "_own/sass/main.scss" | resources.ToCSS $sassOptions | minify }}
< link rel = "stylesheet" type = "text/css" href = "{{ $sassStyle.RelPermalink | relURL }}" >
{{ $style := resources.Match "_own/css/**.css" | resources.Concat "css/custom.css" | minify }}{{/* .Resources.GetMatch "css/**.css" */}}
< link rel = "stylesheet" type = "text/css" href = "{{ $style.RelPermalink | relURL }}" >
{{ if isset .Site.Params "custom_css" }}
{{ range .Site.Params.custom_css }}
< link rel = "stylesheet" type = "text/css" href = "{{ $.Site.BaseURL }}{{ . }}" >
{{ end }}
{{ end }}
2022-11-15 23:34:16 +01:00
{{ range .AlternativeOutputFormats -}}
2022-11-23 00:41:16 +01:00
{{ printf `< link rel = "%s" type = "%s" href = "%s" title = "%s" / > ` .Rel .MediaType.Type (.Permalink | relURL) $.Site.Title | safeHTML }}
2022-11-15 23:34:16 +01:00
{{ end }}
2022-11-13 20:52:45 +01:00
< / head >