Merge pull request #218 from szpak/keyboardFromTags

Use tags as keywords if keywords not defined
This commit is contained in:
zzossig 2020-03-03 19:13:12 +09:00 committed by GitHub
commit a287af5467
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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 }}"> <link rel="{{ .Rel }}" type="{{ .MediaType.Type }}" title="{{ .Name }}" href="{{ .Permalink | safeURL }}">
{{ end }} {{ end }}
<meta name="description" content="{{ $.Param "description" }}" /> <meta name="description" content="{{ $.Param "description" }}" />
{{ if isset .Params "keywords" }}
<meta name="keywords" content="{{ delimit .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="created" content="{{ .Date.Format "2006-01-02T15:04:05-0700" }}">
<meta name="modified" content="{{ .Lastmod.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" }}"> <meta property="article:published_time" content="{{ .Date.Format "2006-01-02T15:04:05-0700" }}">