2020-07-20 16:43:51 +02:00
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
2020-12-13 15:49:25 +01:00
|
|
|
{{- if hugo.IsProduction | or (eq .Site.Params.env "production") }}
|
2020-11-14 08:24:22 +01:00
|
|
|
<meta name="robots" content="index, follow">
|
|
|
|
{{- else }}
|
|
|
|
<meta name=" robots" content="noindex, nofollow">
|
|
|
|
{{- end -}}
|
2020-07-20 16:43:51 +02:00
|
|
|
<!-- Title -->
|
2020-11-22 20:57:09 +01:00
|
|
|
<title>{{ if .IsHome }}{{else}}{{ if .Title }}{{ .Title }} | {{ end }}{{end}}{{ .Site.Title }}</title>
|
2020-07-20 16:43:51 +02:00
|
|
|
<!-- Meta -->
|
2020-10-17 12:30:46 +02:00
|
|
|
<meta name="keywords" content="{{ if .Params.keywords -}}
|
|
|
|
{{- range $i, $e := .Params.keywords }}{{ if $i }}, {{ end }}{{ $e }}{{ end }} {{- else }}
|
|
|
|
{{- range $i, $e := .Params.tags }}{{ if $i }}, {{ end }}{{ $e }}{{ end }} {{- end -}}" />
|
|
|
|
<meta name="description" content="{{- with .Description }}{{ . }}{{- else }}{{- if .IsPage}}
|
|
|
|
{{- .Summary | default (printf "%s - %s" .Title .Site.Title) }}{{- else }}
|
|
|
|
{{- with .Site.Params.description }}{{ . }}{{- end }}{{- end }}{{- end -}}">
|
2020-10-25 08:17:09 +01:00
|
|
|
<meta name="author" content="{{ (partial "author.html" . ) }}">
|
2020-12-16 17:07:02 +01:00
|
|
|
<link rel="canonical" href="{{ if .Params.canonicalURL -}} {{ trim .Params.canonicalURL " " }} {{- else -}} {{ .Permalink }} {{- end }}" />
|
2020-09-23 09:22:32 +02:00
|
|
|
{{- if .Site.Params.analytics.google.SiteVerificationTag }}
|
2020-08-20 18:42:53 +02:00
|
|
|
<meta name="google-site-verification" content="{{ .Site.Params.analytics.google.SiteVerificationTag }}" />
|
2020-09-23 09:22:32 +02:00
|
|
|
{{- end}}
|
2020-07-20 16:43:51 +02:00
|
|
|
<!-- Styles -->
|
2020-12-09 12:47:22 +01:00
|
|
|
{{- $common := (resources.Match "css/*.css") | resources.Concat "assets/css/common.css" }}
|
|
|
|
{{- $extended := (resources.Match "css/extended/*.css") | resources.Concat "assets/css/extended.css" }}
|
|
|
|
{{- /* bundle all required css */}}
|
|
|
|
{{- /* Add extended css after theme style */ -}}
|
|
|
|
{{- $stylesheet := (slice $common $extended) | resources.Concat "assets/css/stylesheet.css" | minify }}
|
|
|
|
|
2020-12-01 14:22:06 +01:00
|
|
|
{{- if not .Site.Params.assets.disableFingerprinting }}
|
2020-12-07 18:29:51 +01:00
|
|
|
{{- $stylesheet := $stylesheet | fingerprint -}}
|
2020-07-25 08:48:39 +02:00
|
|
|
<link href="{{ $stylesheet.Permalink }}" integrity="{{ $stylesheet.Data.Integrity }}" rel="preload stylesheet"
|
|
|
|
as="style">
|
2020-12-01 14:22:06 +01:00
|
|
|
{{- else}}
|
|
|
|
<link href="{{ $stylesheet.Permalink }}" rel="preload stylesheet" as="style">
|
|
|
|
{{- end}}
|
2020-12-06 13:49:50 +01:00
|
|
|
<!-- Search -->
|
|
|
|
{{- if (eq .Layout `search`) -}}
|
|
|
|
<link rel="preload" as="fetch" href="../index.json" crossOrigin="anonymous">
|
2020-12-15 14:25:01 +01:00
|
|
|
{{- $fastsearch := resources.Get "js/fastsearch.js" | resources.ExecuteAsTemplate "js/fastsearch.js" .Site.Params.fuseOpts }}
|
2020-12-06 13:49:50 +01:00
|
|
|
{{- $fusejs := resources.Get "js/fuse.js" }}
|
|
|
|
{{- if not .Site.Params.assets.disableFingerprinting }}
|
|
|
|
{{- $search := (slice $fusejs $fastsearch ) | resources.Concat "assets/js/search.js" | minify | fingerprint }}
|
2020-12-27 18:09:03 +01:00
|
|
|
<script defer src="{{ $search.Permalink }}" onload="loadSearch();" integrity="{{ $search.Data.Integrity }}"></script>
|
2020-12-06 13:49:50 +01:00
|
|
|
{{- else}}
|
|
|
|
{{ $search := (slice $fusejs $fastsearch ) | resources.Concat "assets/js/search.js" | minify }}
|
2020-12-27 18:09:03 +01:00
|
|
|
<script defer src="{{ $search.Permalink }}" onload="loadSearch();"></script>
|
2020-12-06 13:49:50 +01:00
|
|
|
{{- end}}
|
|
|
|
{{- end -}}
|
|
|
|
|
2020-07-20 16:43:51 +02:00
|
|
|
<!-- Favicons -->
|
2020-11-05 15:15:52 +01:00
|
|
|
<link rel="icon" href="{{- .Site.Params.assets.favicon | default "favicon.ico" | absURL -}}">
|
|
|
|
<link rel="icon" type="image/png" sizes="16x16" href="
|
|
|
|
{{- .Site.Params.assets.favicon16x16 | default "favicon-16x16.png" | absURL -}}">
|
|
|
|
<link rel="icon" type="image/png" sizes="32x32" href="
|
|
|
|
{{- .Site.Params.assets.favicon32x32 | default "favicon-32x32.png" | absURL -}}">
|
|
|
|
<link rel="apple-touch-icon" href="
|
|
|
|
{{- .Site.Params.assets.apple_touch_icon | default "apple-touch-icon.png" | absURL -}}">
|
|
|
|
<link rel="mask-icon" href="{{- .Site.Params.assets.safari_pinned_tab | default "safari-pinned-tab.svg" | absURL -}}">
|
|
|
|
<meta name="theme-color" content="#2e2e33">
|
|
|
|
<meta name="msapplication-TileColor" content="#2e2e33">
|
2020-07-20 16:43:51 +02:00
|
|
|
<!-- Generator -->
|
|
|
|
{{- hugo.Generator }}
|
|
|
|
<!-- RSS -->
|
2020-09-23 09:22:32 +02:00
|
|
|
{{- range .AlternativeOutputFormats -}}
|
2020-10-03 11:17:42 +02:00
|
|
|
<link rel="{{ .Rel }}" type="{{ .MediaType.Type }}" href="{{ .Permalink | safeURL }}">
|
|
|
|
{{ end -}}
|
2020-11-12 06:49:29 +01:00
|
|
|
{{- range .Translations -}}
|
|
|
|
<link rel="alternate" hreflang="{{- .Lang -}}" href="{{- .Permalink -}}" />
|
|
|
|
{{ end }}
|
2020-10-18 16:51:42 +02:00
|
|
|
{{- partial "extend_head.html" . -}}
|
2020-07-20 16:43:51 +02:00
|
|
|
<!-- Misc -->
|
2020-12-13 15:49:25 +01:00
|
|
|
{{- if hugo.IsProduction | or (eq .Site.Params.env "production") }}
|
2020-07-20 16:43:51 +02:00
|
|
|
{{- template "_internal/google_analytics_async.html" . }}
|
2020-11-14 08:14:56 +01:00
|
|
|
{{- template "_internal/google_news.html" . }}
|
2020-10-11 17:38:44 +02:00
|
|
|
{{- template "partials/templates/opengraph.html" . }}
|
|
|
|
{{- template "partials/templates/twitter_cards.html" . }}
|
2020-10-15 06:51:33 +02:00
|
|
|
{{- template "partials/templates/schema_json.html" . }}
|
|
|
|
{{- end }}
|