mirror of
https://github.com/BBaoVanC/bobatheme.git
synced 2024-12-22 04:13:17 -06:00
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:
parent
788583ea23
commit
77afe66aa6
@ -21,6 +21,9 @@
|
||||
<meta itemprop="image" content="{{ $featured.Permalink }}">
|
||||
{{ end }}
|
||||
|
||||
{{ with .Keywords }}
|
||||
<meta itemprop="keywords" content="{{ delimit . ", " }}">
|
||||
{{ else }}
|
||||
{{ with (.GetTerms "tags") }}
|
||||
{{ $tags := slice }}
|
||||
{{ range . }}
|
||||
@ -28,3 +31,4 @@
|
||||
{{ end }}
|
||||
<meta itemprop="keywords" content="{{ delimit $tags ", " }}">
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
|
Loading…
Reference in New Issue
Block a user