summaryrefslogtreecommitdiff
path: root/resources/views/place-list.phtml
blob: 693589a7ffd4666faf100477749770d66956aafa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php use Fisharebest\Webtrees\I18N; ?>

<div class="row">
            <span class="col list_label mr-1">
                <i class="icon-place"></i>
                <?= I18N::translate('Place list') ?>
            </span>
</div>
<div class="row">
    <?php foreach ($columns as $column) : ?>
        <ul class="col list_value_wrap mr-1">
            <?php foreach ($column as $item) : ?>
                <li>
                    <a href="<?= e($item->url()) ?>"><?= $item->fullName() ?></a>
                </li>
            <?php endforeach ?>
        </ul>
    <?php endforeach ?>
</div>