| Current Path : /home/lejardintz/www/components/com_kunena/template/crypsis/layouts/widget/breadcrumb/ |
| Current File : /home/lejardintz/www/components/com_kunena/template/crypsis/layouts/widget/breadcrumb/default.php |
<?php
/**
* Kunena Component
* @package Kunena.Template.Crypsis
* @subpackage Layout.Widget
*
* @copyright (C) 2008 - 2016 Kunena Team. All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
* @link https://www.kunena.org
**/
defined('_JEXEC') or die;
$pathway = $this->breadcrumb->getPathway();
$item = array_shift($pathway);
if ($item) : ?>
<ul class="breadcrumb">
<li class="active">
<span class="divider icon-location"></span>
<a href="<?php echo $item->link; ?>" rel="nofollow"><?php echo $item->name; ?></a>
</li>
<?php foreach($pathway as $item) : ?>
<li class="divider"><i class="icon-chevron-right"></i></li>
<li>
<a href="<?php echo $item->link; ?>" rel="nofollow"><?php echo $item->name; ?></a>
</li>
<?php endforeach; ?>
</ul>
<?php endif ?>