xref: /webtrees/resources/views/modules/yahrzeit/list.phtml (revision 032918ffd748a1c95dc7cb13584bc50509063155)
1<?php use Fisharebest\Webtrees\I18N; ?>
2
3<?php foreach ($yahrzeits as $yahrzeit) : ?>
4    <a href="<?= e($yahrzeit->individual->url()) ?>" class="list_item name2">
5        <?= $yahrzeit->individual->fullName() ?>
6    </a>
7    <small><?= view('icons/sex-' . $yahrzeit->individual->sex()) ?></small>
8    <div class="indent">
9        <?= $yahrzeit->fact->date()->display(true) ?>,
10        <?= I18N::translate('%s year anniversary', $yahrzeit->fact->anniv) ?>
11    </div>
12<?php endforeach ?>
13