| Server IP : 54.36.91.62 / Your IP : 216.73.217.111 Web Server : Apache System : Linux webm013.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : coopiak ( 151928) PHP Version : 8.3.23 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/coopiak/amisdesseniors-fr/annonces/templates/yootheme/templates/ |
Upload File : |
<?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 ?>