Advertisement
Guest User

Untitled

a guest
Nov 11th, 2019
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.71 KB | None | 0 0
  1. <nav aria-label="breadcrumb">
  2. <ol class="breadcrumb" itemscope itemtype="http://schema.org/BreadcrumbList">
  3.  
  4. <!-- An example of CORRECT implementation of breadcrumb markup -->
  5. <li class="breadcrumb-item"
  6. itemtype="http://schema.org/ListItem"
  7. itemprop="itemListElement"
  8. itemscope="" >
  9. <a itemprop="item" href="https://www.rivers.com.au/"><span itemprop="name">Home</span></a>
  10. <meta itemprop="position" content="1" />
  11. </li>
  12. <li class="breadcrumb-item"
  13. itemtype="http://schema.org/ListItem"
  14. itemprop="itemListElement"
  15. itemscope="" >
  16. <a itemprop="item" href="https://www.rivers.com.au/footwear"><span itemprop="name">Footwear</span></a>
  17. <meta itemprop="position" content="2" />
  18. </li>
  19. <li class="breadcrumb-item"
  20. itemtype="http://schema.org/ListItem"
  21. itemprop="itemListElement"
  22. itemscope="" >
  23. <a itemprop="item" href="https://www.rivers.com.au/footwear/womens-footwear"><span itemprop="name">Women's Footwear</span></a>
  24. <meta itemprop="position" content="3" />
  25. </li>
  26. <li class="breadcrumb-item"
  27. itemtype="http://schema.org/ListItem"
  28. itemprop="itemListElement"
  29. itemscope="" >
  30. <a itemprop="item" href="https://www.rivers.com.au/footwear/womens-footwear/boots"><span itemprop="name">Boots</span></a>
  31. <meta itemprop="position" content="4" />
  32. </li>
  33. </ol>
  34. </nav>
  35.  
  36. <!-- INCORRECT: How your breadcrumb markup currently looks -->
  37. <ol class="breadcrumb" itemscope itemtype="http://schema.org/BreadcrumbList">
  38. <li class="breadcrumb-item" itemtype="http://schema.org/ListItem"
  39. itemscope="" itemprop="itemListElement">
  40. <a href='/' itemprop="item">Home</a></li>
  41. <li class="breadcrumb-item" itemtype="http://schema.org/ListItem"
  42. itemscope="" itemprop="itemListElement">
  43. <a href="/footwear" itemprop="item">Footwear</a></li>
  44. <li class="breadcrumb-item" itemtype="http://schema.org/ListItem"
  45. itemscope="" itemprop="itemListElement">
  46. <a href="/footwear/womens-footwear" itemprop="item">Women&#39;s Footwear</a></li>
  47. <li class="breadcrumb-item active" itemtype="http://schema.org/ListItem"
  48. class="active" itemscope="" itemprop="itemListElement">Boots</li>
  49. </ol>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement