Your sites Log in Sign up Menu

Author and keyword metadata?

I tried using the author and keyword metadata in my post. For some reason, it wasn't displaying on the published post. I am wondering if that's how it is supposed to be.

Here is a sample format:

Date: June 26, 2023
Tags: Style
Keywords: summer essentials, style, dress, woven bag, sunscreen, sunglasses
Author: anchor

9 months ago, 1 replies   metadata   Improve this question

Blot does not currently handle 'Author' or 'Keywords' metadata. Please refer to the list of all the metadata that Blot acts upon.

However, there's nothing stopping you from using these properties in your template. For example, you could add something to your template's entry.html file which goes like this:

{{#entry}}
  ...
  {{#metadata.author}}
  <p>By {{metadata.author}}</p>
  {{/metadata.author}}
  ...
{{/entry}}
Answered 9 months ago · Improve this answer