How to group and link content

Structure
content/
├── trips/
│   ├── trip-1/
│   │   ├── day-1/
│   │   │   ├── image-1.jpg
│   │   │   └── index.md
│   │   ├── day-2/
│   │   │   ├── image-2.jpg
│   │   │   └── index.md
│   │   ├── day-3/
│   │   │   ├── image-3.jpg
│   │   │   └── index.md
│   │   ├── image-a.jpg
│   │   └── _index.md
│   └── trip-2/
│       ├── day-1/
│       │   ├── image-4.jpg
│       │   └── index.md
│       ├── day-2/
│       │   ├── image-5.jpg
│       │   └── index.md
│       ├── day-3/
│       │   ├── image-6.jpg
│       │   └── index.md
│       ├── image-b.jpg
│       └── _index.md
└── _index.md

Example

git clone --single-branch -b hugo-forum-topic-38429 https://github.com/jmooring/hugo-testing hugo-forum-topic-38429
cd hugo-forum-topic-38429
hugo server
1 Like