blob: ef54eaf53603a16b4484d239e1bb95e61bd18435 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<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>
|