Breadcrumbs

Every application page must manage a breadcrumb trail that defines the position of the page within the selected top menu or left-menu item. Breadcrumbs provide a textual representation of the page in the overall set of available functions.

Note: Breadcrumbs should be the first text item on each page—error or information messages must appear below the breadcrumb text.
Enclose breadcrumb text in HTML tags:
<h1 class = "[type]"> 
<wicket:message key = "[breadcrumbtextkey]" /> 
</h1> 
where type is one of:
Breadcrumb trails must expand when users follow actions that take them to other pages. To separate elements of a breadcrumb, use a standard separator.
<h1 class = "[type]">    
  <wicket:message key = "[breadcrumb1textkey]" />    
  <wicket:message key = "application.breadcrumb.separator" />    
  <wicket:message key = "[breadcrumb2textkey]" />    
</h1>


Breadcrumbs for Web Applications

Note: Breadcrumb text must relate to a short page name, not to an instruction or help text.