Bootstrap 3 breadcrumb:

Separators are automatically added in CSS through :before and content.

<ol class="breadcrumb">
  <li><a href="#">Home</a></li>
  <li><a href="#">Library</a></li>
  <li class="active">Data</li>
</ol>

Bootstrap 2 breadcrumb:

<ul class="breadcrumb">
  <li><a href="#">Home</a> <span class="divider">/</span></li>
  <li><a href="#">Library</a> <span class="divider">/</span></li>
  <li class="active">Data</li>
</ul>

The difference is item-list type and divider

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

el7cosmos’s picture

Status: Active » Needs review
FileSize
792 bytes

Looking at the bootstrap 3 breadrcumb, i think we could just return list of breadcrumb with theme_item_list()

markhalliwell’s picture

Status: Needs review » Fixed

Thanks @el7cosmos!

Committed 60b62d7 to 7.x-3.x.

markhalliwell’s picture

Version: 7.x-3.x-dev » 7.x-3.0-beta1

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.