micromata / Baumeister

Unmaintained – :construction_worker: The aim of this project is to help you to build your things. From Bootstrap themes over static websites to single page applications.
MIT License
171 stars 37 forks source link

Nested pages - feature request? #252

Closed ruzicic closed 6 years ago

ruzicic commented 6 years ago

Hello Baumeisters! Is there a way I can create nested pages?

- handlebars
  - helpers
  - layouts
  - partials
  - myNestedPage
     - here.hbs
  index.hbs

At the moment, whatever I tried I got 404 - Cannot GET /myNestedPage/here.html

mischah commented 6 years ago

Guess you wanted to nest pages in the src directory, not in the handlebars directory:

src
├── demoElements.hbs
├── handlebars
│   ├── helpers
│   ├── layouts
│   └── partials
├── index.hbs
├── stickyFooter.hbs
└── myNestedPage
    └── here.hbs

This was a bug, is fixed in the master branch with 5e533ba and will make it to the next release.

Thanks for bringing this up 👍