Breadcrumbs
Getting the breadcrumbs for the current page:
GET /events/event-1/@breadcrumbs HTTP/1.1
Accept: application/json
Example response:
HTTP/1.1 200 OK
Content-Type: application/json
{
"@id": "http://localhost:8000/events/event-1/@breadcrumbs",
"items": [
{
"@id": "http://localhost:8000/events",
"title": "Events"
},
{
"@id": "http://localhost:8000/events/event-1",
"title": "Event 1"
}
]
}