mirror of
https://github.com/thegeeklab/hugo-geekblog.git
synced 2024-11-04 20:30:44 +00:00
33 lines
1.1 KiB
HTML
33 lines
1.1 KiB
HTML
<meta charset="UTF-8" />
|
|
<meta name="referrer" content="no-referrer" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
{{ hugo.Generator }}
|
|
|
|
{{- $keywords := default .Site.Params.Keywords .Keywords -}}
|
|
{{- $authors := default (slice .Site.Params.geekblogAuthor) .Params.authors -}}
|
|
{{- $seoIgnore := default (slice "taxonomy" "section" "term" "404") .Site.Params.geekblogSeoIgnore -}}
|
|
|
|
{{- if not (in $seoIgnore .Kind) }}
|
|
<meta name="robots" content="index, follow" />
|
|
{{- else }}
|
|
<meta name="robots" content="noindex, nofollow" />
|
|
{{- end }}
|
|
{{- with partial "utils/description" . }}
|
|
<meta name="description" content="{{ . | plainify | htmlUnescape | chomp }}" />
|
|
{{- end }}
|
|
{{- with $keywords }}
|
|
<meta name="keywords" content="{{ delimit . "," }}" />
|
|
{{- end }}
|
|
{{- with $authors }}
|
|
{{- $list := slice -}}
|
|
{{- range sort . }}
|
|
{{- with . }}
|
|
{{- $author := index $.Site.Data.authors . -}}
|
|
{{- $list = $list | append $author.name -}}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- with $list }}
|
|
<meta name="author" content="{{ delimit . "," }}" />
|
|
{{- end }}
|
|
{{- end }}
|