The skeletontheme_breadcrumb() function in template.php outputs an HTML5 nav tag while the rest of the theme utilizes XHTML+RDFa 1.0. This function should use div instead.

function skeletontheme_breadcrumb($variables) {
  $breadcrumb = $variables['breadcrumb'];
  if (!empty($breadcrumb)) {
    // Use CSS to hide titile .element-invisible.
    $output = '<h2 class="element-invisible">' . t('You are here') . '</h2>';
    // comment below line to hide current page to breadcrumb
	$breadcrumb[] = drupal_get_title();
    $output .= '<nav class="breadcrumb">' . implode('<span class="sep">»</span>', $breadcrumb) . '</nav>';
    return $output;
  }
}

On a less critical note, &raquo;should be used in place of a literal right angle quote symbol.

Comments

gtsopour’s picture

Assigned: Unassigned » gtsopour
gtsopour’s picture

Thank you aberger for this report. I will examine this issue directly.

Thanks
George

gtsopour’s picture

Status: Active » Fixed
Issue tags: +Skeleton theme, +Responsive Drupal theme, +Skeleton Drupal theme

Just made and committed this change http://drupalcode.org/project/skeletontheme.git/commit/daf10d1

Thanks
George

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

Anonymous’s picture

Issue summary: View changes

fixed a mistake