breadcrumbs.phtml 411 B

1234567891011121314151617
  1. <!--
  2. breadcrumbs view helper
  3. -->
  4. <?php
  5. if (count($this->breadcrumbs) > 0) {
  6. $breadcrumbs = array();
  7. foreach ($this->breadcrumbs as $page) {
  8. $breadcrumbs[] = '<a href="' . $this->url($page->params) . '">' . $page->label . '</a>';
  9. }
  10. ?>
  11. <div class="breadcrumbs">
  12. <span>
  13. <i class="fa fa-home"></i>
  14. <?php echo implode(' &gt; ', $breadcrumbs); ?>
  15. </span>
  16. </div>
  17. <?php } ?>