Understanding Collections
Collections are the heart of Vibe Site's content organization. Each top-level directory represents a collection with specific behavior.
Available Collections
| Collection | URL Base | Structure | Features |
|---|---|---|---|
| blog | /blog/ | flat | date-sorted, RSS |
| notes | /notes/ | hierarchical | auto-indexes |
| snippets | /snippets/ | flat | syntax highlighting |
| talks | /talks/ | flat | - |
| projects | /projects/ | flat | - |
| recipes | /recipes/ | flat | - |
| slides | /slides/ | flat | no backlinks |
Flat vs Hierarchical
Flat collections ignore subdirectory structure in URLs. A file at blog/2024/post.md becomes /blog/post/.
Hierarchical collections (only notes) preserve directory structure. A file at notes/linux/networking.md becomes /notes/linux/networking/.
Learn More
- See collections documentation
- Browse code snippets
Related: #collections #organization @documentation