Whitebox Gallery

Use <ol outputclass="whitebox"> to hold images and create a whitebox gallery component.

click on the image below

<ol outputclass="whitebox">
  <li>
    <image href="..."/>
  </li>
  <li>
    <image href="..."/>
  </li>
  <li>
    <image href="..."/>
  </li>
</ol>

Whitebox Gallery Titles

Use the <alt> element to display a title with each image.

click on the image below

First Image
Second ImageThird Image
<ol outputclass="whitebox">
  <li>
    <image href="...">
      <alt>First Image</alt>
    </image>
  </li>
  <li>
    <image href="...">
      <alt>Second Image</alt>
    </image>
  </li>
  <li>
    <image href="...">
      <alt>Third Image</alt>
    </image>
  </li>
</ol>