Allow per-page customization of description/keywords

This commit is contained in:
Kostas Chatzikokolakis 2024-07-08 20:22:12 +03:00 committed by zjedi
parent b411ea2f0a
commit 8bc71355a6

View file

@ -1,15 +1,17 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>{{ with .Title }}{{ . }}{{ else }}{{ .Site.Title }}{{ end }}</title> {{ with or .Title .Site.Title | plainify }}
<title>{{ . }}</title>
{{ end }}
{{ with resources.Get .Site.Params.favicon }} {{ with resources.Get .Site.Params.favicon }}
<link rel="shortcut icon" href="{{ .RelPermalink }}" type="{{ .MediaType.Type }}" />{{ end }} <link rel="shortcut icon" href="{{ .RelPermalink }}" type="{{ .MediaType.Type }}" />{{ end }}
{{ with .Site.Params.description }} {{ with or .Description .Site.Params.description | plainify }}
<meta name="description" content="{{ . }}" <meta name="description" content="{{ . }}"
/>{{ end }} />{{ end }}
{{ with .Site.Params.meta.keywords }} {{ with or (delimit .Keywords ", ") .Site.Params.meta.keywords }}
<meta name="keywords" content="{{ . }}" <meta name="keywords" content="{{ . }}"
/>{{ end }} />{{ end }}
<meta name="referrer" content="no-referrer-when-downgrade" /> <meta name="referrer" content="no-referrer-when-downgrade" />