I'm trying to use the Pelican Static Site Generator to create a static site which is not a blog.
Each markdown file inside the content/posts
folder contains the following data.
---
name: Product Name here
price: Product Price goes here
image: Product Image goes here
---
The description content in Markdown goes here
But when I preview the site, I'm getting this error message: Skipping filename.md: could not find information about 'title'. I get the same error message if I move all the markdown files into the content/pages
folder.
I would like to display the product information (which is stored in markdown files as shown above) on the homepage (index.html)
How do I get the content inside the posts folder not to be treated as articles or in other words make the title & date metadata optional for articles?