Support custom keywords instead of defaulting to using tags

Now can set `keywords:` in the front matter for actual keywords
This commit is contained in:
BBaoVanC 2024-01-22 20:44:54 -06:00
parent 788583ea23
commit 77afe66aa6
Signed by: bbaovanc
GPG Key ID: 18089E4E3CCF1D3A
1 changed files with 9 additions and 5 deletions

View File

@ -21,10 +21,14 @@
<meta itemprop="image" content="{{ $featured.Permalink }}">
{{ end }}
{{ with (.GetTerms "tags") }}
{{ $tags := slice }}
{{ range . }}
{{ $tags = $tags | append .LinkTitle }}
{{ with .Keywords }}
<meta itemprop="keywords" content="{{ delimit . ", " }}">
{{ else }}
{{ with (.GetTerms "tags") }}
{{ $tags := slice }}
{{ range . }}
{{ $tags = $tags | append .LinkTitle }}
{{ end }}
<meta itemprop="keywords" content="{{ delimit $tags ", " }}">
{{ end }}
<meta itemprop="keywords" content="{{ delimit $tags ", " }}">
{{ end }}