I have a following structure in my Hugo & Doks project:
- content
- docs
- working.md
- working-as-well.md
- get-started2
- working.md
...
- get-started.md
...
- layouts
- get-started2
- single.html
- get-started.html
Content placed in docs
and get-started2
has customized layout and works as expected. Great!
However, I have huge pain to set-up custom layout for get-started.md
. I cannot do it like with get-started2
- place it into a folder. Client requests to have get started URL as:
www.SomeProject.com/get-started
so it must not be placed in folder (like get-started2
)
www.SomeProject.com/get-started2/working
Do you have any hints please?
layouts
was created and theme isananke
. How can I use frontmatter withlayout: test
? Easier would be to remove the theme? Can you adapt your answer to include an example related to the tutorial? – Amphibology