How would I go about making list templates that only show a list of the bundles at the level immediately below? This seems to be surprisingly tricky - at least for my limited abilities.
IOW if I have such a structure as shown below, the home page should only show the branch bundles (sections) chairs and tables. Chairs would only show dining-chair, footstool and lounge-chair. Only when I’m in lounge-chair should I see the articles (leaf bundles) drilling-holes, sawing-wood, etc.
I’m thinking this is a pretty common site structure for project descriptions or documentation but I can’t seem to find any examples in the documentation that describe this sort of arrangement … or am I just blind?
content
├── _index.md
├── chairs
│ ├── _index.md
│ ├── dining-chair
│ │ ├── _index.md
│ │ ├── steaming-beech
│ │ │ ├── img3.jpg
│ │ │ └── index.md
│ │ └── using-a-spokeshave
│ │ └── index.md
│ ├── footstool
│ │ ├── _index.md
│ │ ├── dovetail-joints
│ │ │ └── index.md
│ │ └── planing-oak
│ │ └── index.md
│ └── lounge-chair
│ ├── _index.md
│ ├── drilling-holes
│ │ └── index.md
│ ├── sawing-wood
│ │ └── index.md
│ └── shaping-the-legs
│ └── index.md
└── tables
├── _index.md
└── coffee-table
└── _index.md