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

declare(strict_types=1);

/**
 * @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']) ?>">
                <span class="<?= $link['class'] ?>"><?= $link['icon'] ?></span>
                <br>
                <?= $link['title'] ?>
            </a>
        </div>
    <?php endforeach ?>
</div>