Use tags as keywords if keywords not defined

Very often keywords are not defined at all, so it's better
to reuse tags that nothing (omitting the fact if keywords
are used by anything).
This commit is contained in:
Marcin Zajączkowski 2020-03-02 14:38:22 +01:00
parent aa80d5edcf
commit 85f42c395e
1 changed files with 4 additions and 0 deletions

View File

@ -2,7 +2,11 @@
<link rel="{{ .Rel }}" type="{{ .MediaType.Type }}" title="{{ .Name }}" href="{{ .Permalink | safeURL }}">
{{ end }}
<meta name="description" content="{{ $.Param "description" }}" />
{{ if isset .Params "keywords" }}
<meta name="keywords" content="{{ delimit .Keywords "," }}">
{{ else if isset .Params "tags" }}
<meta name="keywords" content="{{ delimit .Params.tags "," }}">
{{ end }}
<meta name="created" content="{{ .Date.Format "2006-01-02T15:04:05-0700" }}">
<meta name="modified" content="{{ .Lastmod.Format "2006-01-02T15:04:05-0700" }}">
<meta property="article:published_time" content="{{ .Date.Format "2006-01-02T15:04:05-0700" }}">