2022-07-19 09:14:46 +02:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>{{ .Title }}</title>
|
|
|
|
|
|
|
|
{{ "<!-- mobile responsive meta -->" | safeHTML }}
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
|
|
|
<meta name="description" content="{{ with .Description }}{{ . }}{{ else }}{{ with site.Params.description }}{{ . }}{{ end }}{{ end }}">
|
|
|
|
{{ with site.Params.author }}
|
|
|
|
<meta name="author" content="{{ . }}">{{ end }}
|
|
|
|
{{ hugo.Generator }}
|
|
|
|
|
|
|
|
{{ "<!-- plugins -->" | safeHTML }}
|
|
|
|
{{ range site.Params.plugins.css }}
|
|
|
|
<link rel="stylesheet" href="{{ .link | absURL }}">
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{"<!-- Main Stylesheet -->"|safeHTML}}
|
|
|
|
{{ $styles := resources.Get "css/style.css" | minify }}
|
|
|
|
<link rel="stylesheet" href="{{ $styles.Permalink }}" media="screen">
|
|
|
|
|
|
|
|
{{"<!-- Custom stylesheet - for your changes -->" |safeHTML}}
|
|
|
|
{{ $custom := resources.Get "css/custom.css" | minify }}
|
|
|
|
<link rel="stylesheet" href="{{ $custom.Permalink }}" media="screen">
|
|
|
|
|
|
|
|
{{ "<!--Favicon-->" | safeHTML }}
|
2022-09-13 17:39:44 +02:00
|
|
|
<link rel="shortcut icon" href="{{ `/favicon.ico` | absURL }}" type="image/x-icon">
|
|
|
|
<link rel="icon" href="{{ `/favicon.svg` | absURL }}" type="image/svg+xml">
|
2022-07-19 09:14:46 +02:00
|
|
|
|
|
|
|
{{ with site.Params.google_analytics_id }}
|
|
|
|
{{ "<!-- Global Site Tag (gtag.js) - Google Analytics -->" | safeHTML }}
|
|
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id={{ . }}"></script>
|
|
|
|
<script>
|
|
|
|
window.dataLayer = window.dataLayer || [];
|
|
|
|
function gtag(){dataLayer.push(arguments);}
|
|
|
|
gtag('js', new Date());
|
|
|
|
|
|
|
|
gtag('config', '{{ . }}');
|
|
|
|
</script>
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
</head>
|