Documentation: Widget Navigation

Description

Navigation widgets are actually a set of widgets

  • Page Navigation - The menu you would expect to be on all pages. It can change per page, but you would only expect one menu.
  • Content navigation - Table of contents for a book or similar
  • Object navigation - against an individual object like an image.

They are all done with the XHTML2 Navigation List.

<nl>
 <li href="#">First</li>
 <li href="#">Second</li>
</nl>

Examples

XXX These examples are currently broken - check core style

Top menu bar

Table of Contents

<nl>
 <li href="#">First</li>
 <li href="#">Second</li>
</nl>

Object Navigation

<img src="/demo/photo/rccar_inside.jpg">
 <nl>
  <li href="#">First</li>
  <li href="#">Second</li>
 </nl>
</img>