summaryrefslogtreecommitdiff
path: root/resources/views/modules/gedcom_block/welcome.phtml
blob: 50f4dce81d941daae759ec58c8070da593ca8532 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php

/**
 * @var array<string,array<string,string>> $links
 */

?>
<div class="d-flex flex-wrap justify-content-around">
    <?php foreach ($links as $link) : ?>
        <div class="text-center m-1">
            <a href="<?= e($link['url']) ?>">
                <i class="<?= $link['icon'] ?>"></i>
                <br>
                <?= $link['title'] ?>
            </a>
        </div>
    <?php endforeach ?>
</div>