111 lines
5.6 KiB
HTML
111 lines
5.6 KiB
HTML
<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">
|
|
{{- if hugo.IsProduction | or (eq site.Params.env "production") | and (ne .Params.robotsNoIndex true) }}
|
|
<meta name="robots" content="index, follow">
|
|
{{- else }}
|
|
<meta name="robots" content="noindex, nofollow">
|
|
{{- end }}
|
|
|
|
{{- /* Title */}}
|
|
<title>{{ if .IsHome }}{{ else }}{{ if .Title }}{{ .Title }} | {{ end }}{{ end }}{{ site.Title }}</title>
|
|
|
|
{{- /* Meta */}}
|
|
{{- if .IsHome }}
|
|
{{ with site.Params.keywords -}}<meta name="keywords" content="{{- range $i, $e := . }}{{ if $i }}, {{ end }}{{ $e }}{{ end }}">{{ end }}
|
|
{{- else }}
|
|
<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 -}}">
|
|
{{- end }}
|
|
<meta name="description" content="{{- with .Description }}{{ . }}{{- else }}{{- if or .IsPage .IsSection}}
|
|
{{- .Summary | default (printf "%s - %s" .Title site.Title) }}{{- else }}
|
|
{{- with site.Params.description }}{{ . }}{{- end }}{{- end }}{{- end -}}">
|
|
<meta name="author" content="{{ (partial "author.html" . ) }}">
|
|
<link rel="canonical" href="{{ if .Params.canonicalURL -}} {{ trim .Params.canonicalURL " " }} {{- else -}} {{ .Permalink }} {{- end }}">
|
|
{{- if site.Params.analytics.google.SiteVerificationTag }}
|
|
<meta name="google-site-verification" content="{{ site.Params.analytics.google.SiteVerificationTag }}">
|
|
{{- end }}
|
|
{{- if site.Params.analytics.yandex.SiteVerificationTag }}
|
|
<meta name="yandex-verification" content="{{ site.Params.analytics.yandex.SiteVerificationTag }}">
|
|
{{- end }}
|
|
{{- if site.Params.analytics.bing.SiteVerificationTag }}
|
|
<meta name="msvalidate.01" content="{{ site.Params.analytics.bing.SiteVerificationTag }}">
|
|
{{- end }}
|
|
{{- if site.Params.analytics.naver.SiteVerificationTag }}
|
|
<meta name="naver-site-verification" content="{{ site.Params.analytics.naver.SiteVerificationTag }}">
|
|
{{- end }}
|
|
|
|
{{- /* Styles */}}
|
|
|
|
{{- /* includes */}}
|
|
{{- $includes := slice }}
|
|
{{- $includes = $includes | append (" " | resources.FromString "assets/css/includes-blank.css")}}
|
|
|
|
{{- if not (eq site.Params.assets.disableScrollBarStyle true) }}
|
|
{{- $ScrollStyle := (resources.Get "css/includes/scroll-bar.css") }}
|
|
{{- $includes = (append $ScrollStyle $includes) }}
|
|
{{- end }}
|
|
|
|
{{- $includes_all := $includes | resources.Concat "assets/css/includes.css" }}
|
|
|
|
{{- $theme_vars := (resources.Get "css/core/theme-vars.css") }}
|
|
{{- $reset := (resources.Get "css/core/reset.css") }}
|
|
{{- $media := (resources.Get "css/core/zmedia.css") }}
|
|
{{- $license_css := (resources.Get "css/core/license.css") }}
|
|
{{- $common := (resources.Match "css/common/*.css") | resources.Concat "assets/css/common.css" }}
|
|
{{- $commonHighlight := (resources.Get "css/common/chroma.css") }}
|
|
|
|
{{- /* order is important */}}
|
|
{{- $core := (slice $theme_vars $reset $common $includes_all $media) | resources.Concat "assets/css/core.css" | resources.Minify }}
|
|
{{- $extended := (resources.Match "css/extended/*.css") | resources.Concat "assets/css/extended.css" | resources.Minify }}
|
|
|
|
{{- /* bundle all required css */}}
|
|
{{- /* Add extended css after theme style */ -}}
|
|
{{- $stylesheet := (slice $license_css $core $extended) | resources.Concat "assets/css/stylesheet.css" }}
|
|
|
|
{{- if not site.Params.assets.disableFingerprinting }}
|
|
{{- $stylesheet := $stylesheet | fingerprint }}
|
|
<link crossorigin="anonymous" href="{{ $stylesheet.RelPermalink }}" integrity="{{ $stylesheet.Data.Integrity }}" rel="preload stylesheet" as="style">
|
|
{{- else }}
|
|
<link crossorigin="anonymous" href="{{ $stylesheet.RelPermalink }}" rel="preload stylesheet" as="style">
|
|
{{- end }}
|
|
|
|
{{- /* 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>
|
|
|
|
{{- /* Favicons */}}
|
|
<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="{{ site.Params.assets.theme_color | default "#2e2e33" }}">
|
|
<meta name="msapplication-TileColor" content="{{ site.Params.assets.msapplication_TileColor | default "#2e2e33" }}">
|
|
|
|
{{- /* RSS */}}
|
|
{{ range .AlternativeOutputFormats -}}
|
|
<link rel="{{ .Rel }}" type="{{ .MediaType.Type | html }}" href="{{ .Permalink | safeURL }}">
|
|
{{ end -}}
|
|
{{- range .AllTranslations -}}
|
|
<link rel="alternate" hreflang="{{ .Lang }}" href="{{ .Permalink }}">
|
|
{{ end -}}
|
|
|
|
{{- partial "extend_head.html" . -}}
|
|
|
|
{{- /* Misc */}}
|
|
{{- if hugo.IsProduction | or (eq site.Params.env "production") }}
|
|
{{- template "_internal/google_analytics.html" . }}
|
|
{{- template "partials/templates/opengraph.html" . }}
|
|
{{- template "partials/templates/twitter_cards.html" . }}
|
|
{{- template "partials/templates/schema_json.html" . }}
|
|
{{- end -}}
|