forked from JayHoltslander/Structured-Data-JSON-LD
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBreadcrumbList.json
More file actions
41 lines (41 loc) · 731 Bytes
/
Copy pathBreadcrumbList.json
File metadata and controls
41 lines (41 loc) · 731 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "BreadcrumbList",
"itemListElement":
[
{
"@type": "ListItem",
"position": 1,
"item": {
"@id": "https://jay.holtslander.ca/home",
"name": "Home"
}
},
{
"@type": "ListItem",
"position": 2,
"item": {
"@id": "https://jay.holtslander.ca/home/about",
"name": "About"
}
},
{
"@type": "ListItem",
"position": 3,
"item": {
"@id": "https://jay.holtslander.ca/home/about/projects",
"name": "The big project"
}
},
{
"@type": "ListItem",
"position": 4,
"item": {
"@id": "https://jay.holtslander.ca/home/about/projects/project",
"name": "Project name"
}
}
]
}
</script>