Your sites Log in Sign up Menu

Custom metadata

You can create your own metadata. There’s no configuration neccessary. Just choose a property that isn’t already used by Blot, like Author for example:

 Text 
Author: Eric Blair

Metadata keys should be a single word. They are case insensitive



  

Once the property exists in a file, you can use it in your template:

1
2
3
4
5
6
7
8
9
10
11
  <title>{{title}}</title>
  
    {{#entry}}
    <p>Posted by {{metadata.author}}</p>
    ...
    {{/entry}}