2019-07-05 16:50:21 +02:00
|
|
|
<head>
|
2021-05-04 21:34:58 +02:00
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width">
|
|
|
|
<title>{{ .Title }} - {{ .Site.Title }}</title>
|
|
|
|
<link rel="canonical" href="{{ .Permalink }}">
|
2024-08-15 08:09:23 +02:00
|
|
|
{{- if hugo.IsServer -}}
|
2024-09-02 19:58:59 +02:00
|
|
|
{{- $options := (dict
|
|
|
|
"targetPath" "styles.css"
|
|
|
|
"transpiler" "dartsass"
|
|
|
|
"includePaths" (slice "node_modules")
|
|
|
|
"enableSourceMap" true
|
|
|
|
) -}}
|
2021-05-04 21:34:58 +02:00
|
|
|
{{- $styles := resources.Get "scss/main.scss" | toCSS $options }}
|
|
|
|
<link rel="stylesheet" href="{{ $styles.Permalink }}" media="screen">
|
|
|
|
{{- else -}}
|
2024-09-02 19:58:59 +02:00
|
|
|
{{- $options := (dict
|
|
|
|
"transpiler" "dartsass"
|
|
|
|
"targetPath" "styles.css"
|
|
|
|
"includePaths" (slice "node_modules")
|
|
|
|
) -}}
|
2021-05-04 21:34:58 +02:00
|
|
|
{{- $styles := resources.Get "scss/main.scss" | toCSS $options | minify -}}
|
|
|
|
<link rel="stylesheet" href="{{ $styles.Permalink }}" media="screen">
|
|
|
|
{{- end }}
|
2021-11-04 18:19:15 +01:00
|
|
|
{{ $options := (dict "targetPath" "print.css" ) -}}
|
|
|
|
{{- $print := resources.Get "css/gutenberg.css" | toCSS $options | minify -}}
|
|
|
|
<link rel="stylesheet" href="{{ $print.Permalink }}" media="print">
|
2021-05-04 21:34:58 +02:00
|
|
|
{{ range .AlternativeOutputFormats }}
|
|
|
|
{{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
|
2019-12-15 15:45:47 +01:00
|
|
|
{{ end }}
|
2021-05-04 21:34:58 +02:00
|
|
|
{{ partial "metadata.html" . -}}
|
2020-07-17 18:16:40 +02:00
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
|
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
|
|
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
|
|
|
|
<link rel="shortcut icon" type="image/png" href="/favicon.ico">
|
|
|
|
<link rel="manifest" href="/site.webmanifest">
|
|
|
|
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
|
|
|
|
<meta name="msapplication-TileColor" content="#da532c">
|
|
|
|
<meta name="theme-color" content="#ffffff">
|
2019-07-05 16:50:21 +02:00
|
|
|
</head>
|