Skip to content

Instantly share code, notes, and snippets.

@patrickcoombe
Last active April 26, 2019 18:21
Show Gist options
  • Select an option

  • Save patrickcoombe/924fbb5b06a16533e1174b35a6e9ea89 to your computer and use it in GitHub Desktop.

Select an option

Save patrickcoombe/924fbb5b06a16533e1174b35a6e9ea89 to your computer and use it in GitHub Desktop.
Breadcrumb e.g. from Schema.org
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement":
[
{
"@type": "ListItem",
"position": 1,
"item":
{
"@id": "https://example.com/dresses",
"name": "Dresses"
}
},
{
"@type": "ListItem",
"position": 2,
"item":
{
"@id": "https://example.com/dresses/real",
"name": "Real Dresses"
}
}
]
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment