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">
|
2022-05-22 07:43:50 +02:00
|
|
|
{{- if hugo.IsProduction | or (eq site.Params.env "production") | and (ne .Params.robotsNoIndex true) }}
|
2020-11-14 08:24:22 +01:00
|
|
|
<meta name="robots" content="index, follow">
|
|
|
|
{{- else }}
|
2021-03-30 14:37:36 +02:00
|
|
|
<meta name="robots" content="noindex, nofollow">
|
|
|
|
{{- end }}
|
|
|
|
|
|
|
|
{{- /* Title */}}
|
2022-03-27 15:14:06 +02:00
|
|
|
<title>{{ if .IsHome }}{{ else }}{{ if .Title }}{{ .Title }} | {{ end }}{{ end }}{{ site.Title }}</title>
|
2021-03-30 14:37:36 +02:00
|
|
|
|
|
|
|
{{- /* Meta */}}
|
2021-03-31 06:30:31 +02:00
|
|
|
{{- if .IsHome }}
|
2022-03-31 20:03:56 +02:00
|
|
|
{{ with site.Params.keywords -}}<meta name="keywords" content="{{- range $i, $e := . }}{{ if $i }}, {{ end }}{{ $e }}{{ end }}">{{ end }}
|
2021-03-31 06:30:31 +02:00
|
|
|
{{- else }}
|
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 }}
|
2022-03-31 20:03:56 +02:00
|
|
|
{{- range $i, $e := .Params.tags }}{{ if $i }}, {{ end }}{{ $e }}{{ end }} {{- end -}}">
|
2021-03-31 06:30:31 +02:00
|
|
|
{{- end }}
|
2021-09-02 09:56:05 +02:00
|
|
|
<meta name="description" content="{{- with .Description }}{{ . }}{{- else }}{{- if or .IsPage .IsSection}}
|
2022-03-27 15:14:06 +02:00
|
|
|
{{- .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" . ) }}">
|
2022-03-31 20:03:56 +02:00
|
|
|
<link rel="canonical" href="{{ if .Params.canonicalURL -}} {{ trim .Params.canonicalURL " " }} {{- else -}} {{ .Permalink }} {{- end }}">
|
2022-06-22 19:19:43 +02:00
|
|
|
{{- if site.Params.analytics.google.SiteVerificationTag }}
|
|
|
|
<meta name="google-site-verification" content="{{ site.Params.analytics.google.SiteVerificationTag }}">
|
2021-03-30 14:37:36 +02:00
|
|
|
{{- end }}
|
2022-06-22 19:19:43 +02:00
|
|
|
{{- if site.Params.analytics.yandex.SiteVerificationTag }}
|
|
|
|
<meta name="yandex-verification" content="{{ site.Params.analytics.yandex.SiteVerificationTag }}">
|
2021-03-30 14:37:36 +02:00
|
|
|
{{- end }}
|
2022-06-22 19:19:43 +02:00
|
|
|
{{- if site.Params.analytics.bing.SiteVerificationTag }}
|
|
|
|
<meta name="msvalidate.01" content="{{ site.Params.analytics.bing.SiteVerificationTag }}">
|
2021-03-30 14:37:36 +02:00
|
|
|
{{- end }}
|
2022-07-24 08:55:28 +02:00
|
|
|
{{- if site.Params.analytics.naver.SiteVerificationTag }}
|
|
|
|
<meta name="naver-site-verification" content="{{ site.Params.analytics.naver.SiteVerificationTag }}">
|
|
|
|
{{- end }}
|
2021-03-30 14:37:36 +02:00
|
|
|
|
|
|
|
{{- /* Styles */}}
|
2022-06-03 14:58:52 +02:00
|
|
|
|
|
|
|
{{- /* includes */}}
|
|
|
|
{{- $includes := slice }}
|
|
|
|
{{- $includes = $includes | append (" " | resources.FromString "assets/css/includes-blank.css")}}
|
|
|
|
|
2022-06-03 15:03:54 +02:00
|
|
|
{{- if not (eq site.Params.assets.disableScrollBarStyle true) }}
|
|
|
|
{{- $ScrollStyle := (resources.Get "css/includes/scroll-bar.css") }}
|
|
|
|
{{- $includes = (append $ScrollStyle $includes) }}
|
|
|
|
{{- end }}
|
|
|
|
|
2022-06-03 14:58:52 +02:00
|
|
|
{{- $includes_all := $includes | resources.Concat "assets/css/includes.css" }}
|
|
|
|
|
2021-03-27 06:58:55 +01:00
|
|
|
{{- $theme_vars := (resources.Get "css/core/theme-vars.css") }}
|
|
|
|
{{- $reset := (resources.Get "css/core/reset.css") }}
|
|
|
|
{{- $media := (resources.Get "css/core/zmedia.css") }}
|
2022-05-29 07:41:26 +02:00
|
|
|
{{- $license_css := (resources.Get "css/core/license.css") }}
|
2021-03-27 06:58:55 +01:00
|
|
|
{{- $common := (resources.Match "css/common/*.css") | resources.Concat "assets/css/common.css" }}
|
2022-07-24 01:39:42 +02:00
|
|
|
{{- $commonHighlight := (resources.Get "css/common/chroma.css") }}
|
2021-03-27 17:11:47 +01:00
|
|
|
|
2021-03-27 06:58:55 +01:00
|
|
|
{{- /* order is important */}}
|
2022-07-24 01:39:42 +02:00
|
|
|
{{- $core := (slice $theme_vars $reset $common $includes_all $media) | resources.Concat "assets/css/core.css" | resources.Minify }}
|
2022-05-29 07:41:26 +02:00
|
|
|
{{- $extended := (resources.Match "css/extended/*.css") | resources.Concat "assets/css/extended.css" | resources.Minify }}
|
2021-03-30 14:37:36 +02:00
|
|
|
|
|
|
|
{{- /* bundle all required css */}}
|
|
|
|
{{- /* Add extended css after theme style */ -}}
|
2022-05-29 07:41:26 +02:00
|
|
|
{{- $stylesheet := (slice $license_css $core $extended) | resources.Concat "assets/css/stylesheet.css" }}
|
2020-12-09 12:47:22 +01:00
|
|
|
|
2022-03-27 15:14:06 +02:00
|
|
|
{{- if not site.Params.assets.disableFingerprinting }}
|
2021-03-30 14:37:36 +02:00
|
|
|
{{- $stylesheet := $stylesheet | fingerprint }}
|
2021-04-09 15:55:05 +02:00
|
|
|
<link crossorigin="anonymous" href="{{ $stylesheet.RelPermalink }}" integrity="{{ $stylesheet.Data.Integrity }}" rel="preload stylesheet" as="style">
|
2021-03-30 14:37:36 +02:00
|
|
|
{{- else }}
|
2021-04-09 15:55:05 +02:00
|
|
|
<link crossorigin="anonymous" href="{{ $stylesheet.RelPermalink }}" rel="preload stylesheet" as="style">
|
2021-03-30 14:37:36 +02:00
|
|
|
{{- end }}
|
|
|
|
|
2022-07-31 01:37:00 +02:00
|
|
|
{{- /* noscript */}}
|
|
|
|
<noscript>
|
|
|
|
{{- $noscript := (resources.Get "css/includes/noscript.css") }}
|
|
|
|
{{- if not site.Params.assets.disableFingerprinting }}
|
|
|
|
{{- $noscript := $noscript | fingerprint }}
|
|
|
|
<link crossorigin="anonymous" href="{{ $noscript.RelPermalink }}" integrity="{{ $noscript.Data.Integrity }}" rel="preload stylesheet" as="style">
|
|
|
|
{{- else }}
|
|
|
|
<link crossorigin="anonymous" href="{{ $noscript.RelPermalink }}" rel="preload stylesheet" as="style">
|
|
|
|
{{- end }}
|
|
|
|
</noscript>
|
|
|
|
|
2021-03-30 14:37:36 +02:00
|
|
|
{{- /* Favicons */}}
|
2023-12-16 12:18:23 +01:00
|
|
|
<link rel="icon" type="image/x-icon" href="{{ site.Params.assets.favicon | default "favicon.ico" | absURL }}">
|
2022-03-27 15:14:06 +02:00
|
|
|
<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 }}">
|
2023-12-16 12:18:23 +01:00
|
|
|
<link rel="apple-touch-icon" type="image/png" sizes="180x180" href="{{ site.Params.assets.apple_touch_icon | default "apple-touch-icon.png" | absURL }}">
|
|
|
|
<link rel="mask-icon" type="image/svg+xml" href="{{ site.Params.assets.safari_pinned_tab | default "safari-pinned-tab.svg" | absURL }}" color="{{ site.Params.assets.mask_icon | default "#2e2e33" }}">
|
|
|
|
<link rel="manifest" href="{{ site.Params.assets.site_webmanifest | default "site.webmanifest" | absURL }}">
|
2022-03-27 15:14:06 +02:00
|
|
|
<meta name="theme-color" content="{{ site.Params.assets.theme_color | default "#2e2e33" }}">
|
|
|
|
<meta name="msapplication-TileColor" content="{{ site.Params.assets.msapplication_TileColor | default "#2e2e33" }}">
|
2021-03-30 14:37:36 +02:00
|
|
|
|
|
|
|
{{- /* RSS */}}
|
|
|
|
{{ range .AlternativeOutputFormats -}}
|
2021-05-01 17:55:26 +02:00
|
|
|
<link rel="{{ .Rel }}" type="{{ .MediaType.Type | html }}" href="{{ .Permalink | safeURL }}">
|
2020-10-03 11:17:42 +02:00
|
|
|
{{ end -}}
|
2021-01-29 18:55:07 +01:00
|
|
|
{{- range .AllTranslations -}}
|
2022-03-31 20:03:56 +02:00
|
|
|
<link rel="alternate" hreflang="{{ .Lang }}" href="{{ .Permalink }}">
|
2021-09-11 07:39:01 +02:00
|
|
|
{{ end -}}
|
|
|
|
|
2020-10-18 16:51:42 +02:00
|
|
|
{{- partial "extend_head.html" . -}}
|
2021-03-30 14:37:36 +02:00
|
|
|
|
|
|
|
{{- /* Misc */}}
|
2022-03-27 15:14:06 +02:00
|
|
|
{{- if hugo.IsProduction | or (eq site.Params.env "production") }}
|
2021-03-31 06:12:38 +02:00
|
|
|
{{- template "_internal/google_analytics.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" . }}
|
2021-03-30 14:37:36 +02:00
|
|
|
{{- end -}}
|