Advertisement
Guest User

Untitled

a guest
Feb 19th, 2016
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.64 KB | None | 0 0
  1. <coect-breadcrumbs>
  2.   <nav class="coect-breadcrumbs" role="navigation" aria-label="breadcrumbs">
  3.     <ol class="breadcrumb" itemscope itemtype="http://schema.org/BreadcrumbList">
  4.       <li each={ item, i in opts.items } class={active: !item.url}
  5.          itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
  6.         <a if={ item.url } href={ item.url } itemprop="item" class="h-breadcrumb">
  7.           <span itemprop="name">{ item.name }</span>
  8.         </a>
  9.         <strong if={ !item.url }>{ item.name }</strong>
  10.         <meta itemprop="position" content={ i + 1 } />
  11.       </li>
  12.     </ol>
  13.   </nav>
  14. </coect-breadcrumbs>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement