Your IP : 216.73.216.68


Current Path : /home/jeromecohp/www/templates/yootheme/templates/
Upload File :
Current File : /home/jeromecohp/www/templates/yootheme/templates/breadcrumbs.php

<?php
    $el = $this->el('nav', [
        'class' => 'uk-margin-medium-bottom',
        'aria-label' => $this->trans('Breadcrumb'),
    ]);

    $list = $this->el('ul', [
        'class' => ['uk-breadcrumb'],
        'vocab' => 'https://schema.org/',
        'typeof' => 'BreadcrumbList',
    ]);

    $li = $this->el('li', [
        'property' => 'itemListElement',
        'typeof' => 'ListItem',
    ]);

    $span = $this->el('span', ['property' => 'name']);

    $position = 1;
?>

<?php if ($items) : ?>

<?= $el() ?>

    <?= $list() ?>

    <?php foreach ($items as $key => $item) : ?>

    <?php if (!empty($item->link)) : ?>
        <?= $li() ?>
            <a href="<?= $item->link ?>" property="item" typeof="WebPage"><?= $span([], $item->name) ?></a>
            <meta property="position" content="<?= $position++ ?>">
    <?php elseif ($key !== array_key_last($items)) : ?>
        <li class="uk-disabled">
            <a><?= $item->name ?></a>
    <?php else : ?>
        <?= $li() ?>
            <?= $span([], ['aria-current' => 'page'], $item->name) ?>
            <meta property="position" content="<?= $position++ ?>">
    <?php endif ?>
        <?= $li->end() ?>
    <?php endforeach ?>

    <?= $list->end() ?>

<?= $el->end() ?>

<?php endif ?>