You are here

function commons_roots_breadcrumb in Drupal Commons 6.2

Breadcrumb themeing

File

themes/commons_roots/template.php, line 6

Code

function commons_roots_breadcrumb($breadcrumb) {
  if (!empty($breadcrumb)) {
    return '<div class="breadcrumb">' . implode(' > ', $breadcrumb) . '</div>';
  }
}