Hello all,
I’ve searched the forums and found similar topics, but none has answered my question. Im trying to make HUGO use other than the default templates as outlined in the docs.. But no luck, it always falls back to _default/list.html and _default/single.html ignoring any other template files.
Here is my tree:
content
├── leistungen
│ ├── _index.md
│ ├── page-1.md
│ ├── page-2.md
│ └── page-3.md
layouts
├── _default
│ ├── leistungen.html
│ ├── list.html
│ └── single.html
├── index.html
In this particular case I’m trying to render myurl.com/leistungen with template leistungen.html but list.html is used instead.
I’ve gone through it several times trying to debug but can’t find out what I’m doing wrong here. Thanks for your help.