blob: 1b3b867a6ecc2b59b50c42a01c0fce00dbbfc690 (
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->getFullName() ?></a>
</li>
<?php endforeach ?>
</ul>
<?php endforeach ?>
</div>
|