Include authors meta tag (#634)
This commit is contained in:
parent
b72959de74
commit
82f16001be
|
@ -16,6 +16,15 @@
|
||||||
{{ else }}
|
{{ else }}
|
||||||
<meta name="robots" content="noindex, nofollow">
|
<meta name="robots" content="noindex, nofollow">
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
{{ with .Params.author | default .Site.Params.author }}
|
||||||
|
<meta name="author" content = "
|
||||||
|
{{- if reflect.IsSlice . -}}
|
||||||
|
{{ delimit . ", " | plainify }}
|
||||||
|
{{- else -}}
|
||||||
|
{{ . | plainify }}
|
||||||
|
{{- end -}}
|
||||||
|
">
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
{{ partial "site-style.html" . }}
|
{{ partial "site-style.html" . }}
|
||||||
{{ partial "site-scripts.html" . }}
|
{{ partial "site-scripts.html" . }}
|
||||||
|
|
Loading…
Reference in a new issue