1. <?php if (!empty($items)): ?>
  2.   <ul>
  3.   <?php foreach ($items as $item): ?>
  4.     <li><a href="<?php print $item['attr']['href']; ?>" title="<?php print $item['attr']['title']; ?>"><?php print $item['value']; ?></a></li>
  5.   <?php endforeach ?>
  6.   </ul>
  7. <?php endif ?>