Skip to content

Instantly share code, notes, and snippets.

@jessotron
Created September 24, 2015 21:14
Show Gist options
  • Save jessotron/7ad3c5390850746db08b to your computer and use it in GitHub Desktop.
Save jessotron/7ad3c5390850746db08b to your computer and use it in GitHub Desktop.
Breadcrumb Sample Markup
<ol itemscope itemtype="http://schema.org/BreadcrumbList">
<li itemprop="itemListElement" itemscope
itemtype="http://schema.org/ListItem">
<a itemprop="item" href="https://example.com/">
<span itemprop="name">Home</span></a>
<meta itemprop="position" content="1" />
</li>
<li itemprop="itemListElement" itemscope
itemtype="http://schema.org/ListItem">
<a itemprop="item" href="https://example.com/activewear/">
<span itemprop="name">Activewear</span></a>
<meta itemprop="position" content="2" />
</li>
<li itemprop="itemListElement" itemscope
itemtype="http://schema.org/ListItem">
<a itemprop="item" href="https://example.com/activewear/tops/">
<span itemprop="name">Tops</span></a>
<meta itemprop="position" content="3" />
</li>
</ol>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment