Current Directory: /home/astoriaah/www/templates/yootheme/templates
Viewing File: /home/astoriaah/www/templates/yootheme/templates/breadcrumbs.php
<ul class="uk-breadcrumb">
<?php foreach ($items as $i => $item) : ?>
<?php if ($i < count($items) - 1) : ?>
<?php if (!empty($item->link)) : ?>
<li><a href="<?= $item->link ?>"><?= $item->name ?></a></li>
<?php else : ?>
<li><span><?= $item->name ?></span></li>
<?php endif ?>
<?php else : ?>
<li><span><?= $item->name ?></span></li>
<?php endif ?>
<?php endforeach ?>
</ul>