Keywords
Is there a way with the default blog template to add keywords to your post?
Never mind. Looks like Google is no longer using them for SEO. https://www.safaridigital.com.au/blog/does-google-still-use-meta-keywords/
Answered 2 years ago · Edit answerIf you did want to add these, you'd insert the tag required in your template's head.html. I'd consider adding something like this:
{{#entry.metadata.keywords}}
<meta name="keywords" content="{{entry.metadata.keywords}}">
{{/entry.metadata.keywords}}
Then in a post's metadata:
Keywords: Apple, Banana, Cherry
Answered 2 years ago ·
Edit answer