initial commit
[namibia] / module / Application / view / partial / breadcrumb.phtml
1 <ul class="breadcrumb">
2     <?php
3     // iterate through the pages
4     foreach ($this->pages as $key => $page):
5         ?>
6         <li>
7             <?php
8             // if this isn't the last page, add a link and the separator
9             if ($key < count($this->pages) - 1):
10                 ?>
11                 <a href="<?php echo $page->getHref(); ?>"><?php echo $page->getLabel(); ?></a>
12                 <span class="divider">/</span>
13             <?php // otherwise, just output the name
14             else:
15             ?>
16                 <?php echo $page->getLabel(); ?>
17             <?php endif; ?>
18         </li>
19         <?php endforeach; ?>
20 </ul>