mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2024-11-23 07:47:54 +00:00
35 lines
No EOL
1.9 KiB
HTML
35 lines
No EOL
1.9 KiB
HTML
|
|
<meta charset="utf-8">
|
|
{{- /* to avoid that user swiping to the left leaves a gap on the right side, we set minimum-scale, even if not advised to */}}
|
|
<meta name="viewport" content="height=device-height, width=device-width, initial-scale=1.0, minimum-scale=1.0">
|
|
{{- if (ne .Site.Params.disableGeneratorVersion true) }}
|
|
{{- $gen := hugo.Generator }}
|
|
{{- $gen = replaceRE "\\s*/>$" ">" $gen }}
|
|
{{ $gen | safeHTML }}
|
|
{{- $ver := partial "version.txt" }}
|
|
{{- $ver := printf "<meta name=\"generator\" content=\"%s %s\">" "Relearn" $ver }}
|
|
{{ $ver | safeHTML }}
|
|
{{- end }}
|
|
{{- $title := partial "title.gotmpl" (dict "page" . "linkTitle" true) }}
|
|
{{- if not (and $title .RelPermalink (or (ne .Site.Params.disableSeoHiddenPages true) (not (partialCached "_relearn/pageIsHiddenSelfOrAncestor.gotmpl" (dict "page" . "to" .Site.Home) .Path .Site.Home.Path) ) ) ) }}
|
|
<meta name="robots" content="noindex, nofollow, noarchive, noimageindex">
|
|
{{- end }}
|
|
{{- $url := "" }}
|
|
{{- if .Params.menuPageRef }}
|
|
{{- with site.Home.GetPage (.Params.menuPageRef) }}
|
|
{{- $url = partial "permalink.gotmpl" (dict "to" .) }}
|
|
{{- else }}
|
|
{{- warnf "%q: WARNING: page '%s' not found for 'menuPageRef' parameter" .File.Filename .Params.menuPageRef }}
|
|
{{- end }}
|
|
{{- else if .Params.menuUrl }}
|
|
{{- $url = .Params.menuUrl }}
|
|
{{- end }}
|
|
{{- if $url }}
|
|
<meta http-equiv="refresh" content="0; url={{ $url }}">
|
|
{{- end }}
|
|
<meta name="description" content="{{ with trim (or .Description .Summary | plainify | htmlUnescape) "\n\r\t " }}{{ . }}{{ end }}">
|
|
{{- $authorName := partialCached "_relearn/authorName.gotmpl" . }}
|
|
<meta name="author" content="{{ $authorName }}">
|
|
{{- partial "twitter_cards.html" . }}
|
|
{{- partial "opengraph.html" . }}
|
|
{{- partial "schema.html" . }} |