Your sites Log in Sign up Menu

Can't nest folders?

I joined Blot tonight and I'm trying to make things work, but it seems you can't nest folders?

So if I have:

pages/dogs/index.md
pages/dogs/labrador.md
pages/dogs/corgi.md
pages/dogs/hound.md

Then at the top, my menu now contains: Dogs, Labrador, Corgi, Hound. I just want the menu to contain Dogs, and then go to dogs/index.md, and then I'll link to the other pages separately.

But it seems that nesting does nothing, that every single page you create will show up in the menu bar automatically?


a year ago, 1 replies   how   pages   Improve this question

Blot doesn't support nested pages out-of-the-box but you can add some metadata to your files to make this work the way you'd like. For example, add the following metadata at the start of corgi.md, labrador.md and hound.md, adjusting the link property as needed:

Menu: no
Link: /dogs/labrador

Then add the links in the way that suits you to index.md:

- [Labrador](/dogs/labrador)
- [Corgi](/dogs/corgi)
- [Hound](/dogs/hound)

Does that help? Please let me know if you have any questions about this or anything else

Answered a year ago · Improve this answer