I am trying to make static pages on a hugo website hosting on netlify using netlify CMS and academic theme.
My aim is: example.com/admission
- example.com/admission/
- exapmle.com/admission/success/ or exapmle.com/admission/success.html
So I make pages below:
content
+ admission
+ index.md
+ success.md
example.com/admission/
shows index.md that is I intend.
However exapmle.com/admission/success/
and exapmle.com/admission/success.html
both shows 404 page not found.
How to place files to come true my purpose?
I changed the file construction:
content/
+ admission/
+ index.md
+ success/
+ index.md
And I can see the contents on exapmle.com/admission/success/
.
Is this the right way?