Rather than having an index.html at the root level of the site it’s located within the collection_web_pages .
How do I do this with a Hugo site without putting the permalink in the front matter. I want to be able to specify this in the config file so it can’t be edited within the CMS I am using.
Yes there will be multiple files within _web_pages (collection). I just want one particular page served at ‘/’ (index.html), rather than having an index.html at the root of my project. The rest of the items have a permalink set to the following:
permalinks:
web_pages: /:title/
Ideally I can specify the permalink for individual files in the config similarly to the Jekyll example above.
If I have to resort to setting the url in the front matter it means that customers will be able to mess with it in the CMS that I am using.