xref: /webtrees/resources/views/components/breadcrumbs.phtml (revision 10e0649788c8d7d4974d81c048ca2b225df8f22e)
17c2c99faSGreg Roach<?php
27c2c99faSGreg Roach
3*10e06497SGreg Roachdeclare(strict_types=1);
4*10e06497SGreg Roach
57c2c99faSGreg Roach/**
67c2c99faSGreg Roach * @var array<string|int,string> $links
77c2c99faSGreg Roach */
87c2c99faSGreg Roach
97c2c99faSGreg Roach?>
10dd6b2bfcSGreg Roach<nav class="wt-breadcrumbs" aria-label="breadcrumb" role="navigation">
11dd6b2bfcSGreg Roach    <ol class="breadcrumb small py-2">
12dd6b2bfcSGreg Roach        <?php foreach ($links as $url => $label) : ?>
13dd6b2bfcSGreg Roach            <?php if (is_int($url)) : ?>
14dd6b2bfcSGreg Roach                <li class="breadcrumb-item active">
15dd6b2bfcSGreg Roach                    <?= $label ?>
16dd6b2bfcSGreg Roach                </li>
17dd6b2bfcSGreg Roach            <?php else : ?>
18dd6b2bfcSGreg Roach                <li class="breadcrumb-item">
19dd6b2bfcSGreg Roach                    <a href="<?= e($url) ?>">
20dd6b2bfcSGreg Roach                        <?= $label ?>
21dd6b2bfcSGreg Roach                    </a>
22dd6b2bfcSGreg Roach                </li>
23dd6b2bfcSGreg Roach            <?php endif ?>
24dd6b2bfcSGreg Roach        <?php endforeach ?>
25dd6b2bfcSGreg Roach    </ol>
26dd6b2bfcSGreg Roach</nav>
27