A reference for how this Hugo site is organized and what configuration options are available.
Sections
Sections are created automatically from the directory tree under content/.
Any directory with an _index.md file becomes a section with its own list
page.
content/
├── _index.md ← home page
├── about/
│ ├── _index.md ← /about/ list page
│ ├── whoami.md
│ └── now.md
├── software/
│ ├── _index.md ← /software/ list page
│ ├── ollama.md
│ └── hugo-setup/ ← page bundle (leaf)
│ ├── index.md
│ └── architecture.svg
└── config/
├── _index.md ← /config/ list page
└── this-file.md
No config changes are needed — Hugo derives sections from the filesystem.