blob: d87419dd135ee43eac51b3feb3886300091288d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<? if (!$item->isRoot()) : ?>
<?= $this->render_partial('toc/_toc-item-breadcrumb', ['item' => $item->getParent()]) ?>
<? endif ?>
<li class="contentbar-breadcrumb-item <? if ($item->isActive()) echo 'contentbar-breadcrumb-item-current'; ?>">
<? if (!$item->isActive()) : ?>
<a class="navigate" href="<?= htmlReady($item->getURL()) ?>">
<? endif ?>
<?= htmlReady($item->getTitle()) ?>
<? if (!$item->isActive()) : ?>
</a>
<? endif ?>
</li>
|