package structs // Breadcrumbs defines a list of crumbs type Breadcrumbs []Crumb // Crumb defines a path segment type Crumb struct { Text string Link string }