aboutsummaryrefslogtreecommitdiff
path: root/templates/toc/_toc-item-breadcrumb.php
blob: 4ea48c4a49010b784310ab5478348b9918a01201 (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>
    <? if (!$item->isActive()) : ?>
        <a class="navigate" href="<?= htmlReady($item->getURL()) ?>">
    <? endif ?>
        <?= htmlReady($item->getTitle()) ?>
    <? if (!$item->isActive()) : ?>
        </a>
    <? endif ?>
</li>