Hi Guys,
How do you reference a nested Front Matter value. So here is the style of my front matter
Header:
heading: "The Kruger-Dunning effect"
summary: "Testing"
I want to show this in the config.yml file of the NetlifyCMS. Here is my sample config.yml file fields:
- { label: ‘Title’, name: ‘title’, widget: ‘string’ }
- { label: ‘Publish Date’, name: ‘date’, widget: ‘datetime’ }
- { label: ‘Description’, name: ‘description’, widget: ‘string’ }
- { label: ‘Body’, name: ‘body’, widget: ‘markdown’ }
- { label: ‘Header’, name: ‘header’, widget: ‘string’}
HOw do I get .Params.Header.heading? How do I reference the values under Header?