I have a question about using headless pages.
If I create the following content structure
|-- images
|-- logo
|-- index.md [headless = true]
|-- branding
|-- index.md [headless = true]
I get the warning: found no layout file for "HTML" for "section": You should create a template file which matches Hugo Layouts Lookup Rules for this combination.
If I change that structure to:
|-- images
|-- index.md [headless = true]
|-- logo
|-- index.md
|-- branding
|-- index.md
The warning disappears, but logo and branding are not rendered as before.