breadcrumbs.html 504 B

12345678910111213141516171819
  1. <!--
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. -->
  7. <ul class="items">
  8. <% _.each(breadcrumbs, function(crumb) { %>
  9. <li class="item <%- crumb.name %>">
  10. <% if (crumb.link) { %>
  11. <a href="<%= crumb.link %>" title="<%- crumb.title %>"><%- crumb.label %></a>
  12. <% } else if (crumb.last) { %>
  13. <strong><%= crumb.label %></strong>
  14. <% } else { %>
  15. <%= crumb.label %>
  16. <% } %>
  17. </li>
  18. <% }); %>
  19. </ul>