Skip to content

Instantly share code, notes, and snippets.

@mozchan
Last active December 20, 2018 03:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mozchan/a757b6e49b46ac618a53881458b5edd0 to your computer and use it in GitHub Desktop.
Save mozchan/a757b6e49b46ac618a53881458b5edd0 to your computer and use it in GitHub Desktop.
ぱんくずリスト(JSON-LD + WAI-ARIA)
<nav aria-label="Breadcrumb" class="breadcrumb">
<h2>パンくずリスト</h2>
<ol>
<li><a href="/">Top page</a></li>
<li aria-current="page">PAGE 1</li>
</ol>
</nav>
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"item":{
"@id": "https://exsample.com/",
"name": "Top page"
}
},
{
"@type": "ListItem",
"position": 2,
"item":{
"@id": "https://exsample.com/page1/",
"name": "PAGE 1"
}
}]
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment