Skip to content

Template settings

Björn Schmidtke edited this page May 14, 2017 · 3 revisions
  • .json file next to the template file e.g.

    pages/
      mypage.pug
      mypage.json
    
  • Specifies settings local to the template

  • Fields

    • localized (boolean) - Specifies if the field is localized

Sample mypage.json

{
  "keys": [
    ["title", { "localized": false }],
    ["date", { "localized": false }],
    ["tags", { "localized": false }],
    ["teaser", { "localized": false }],
    ["content1", { "localized": false }],
    ["image", { "localized": false }],
    ["content2", { "localized": false }]
  ]
}
Clone this wiki locally