xref: /webtrees/resources/views/modules/yahrzeit/list.phtml (revision c9e6b69934bcd82295d33d368c560aa2e64627c3)
1*c9e6b699SGreg Roach<?php use Fisharebest\Webtrees\I18N; ?>
2dd6b2bfcSGreg Roach
3dd6b2bfcSGreg Roach<?php foreach ($yahrzeits as $yahrzeit) : ?>
4dd6b2bfcSGreg Roach    <a href="<?= e($yahrzeit->individual->url()) ?>" class="list_item name2">
539ca88baSGreg Roach        <?= $yahrzeit->individual->fullName() ?>
6dd6b2bfcSGreg Roach    </a>
7dd6b2bfcSGreg Roach    <?= $yahrzeit->individual->getSexImage() ?>
8dd6b2bfcSGreg Roach    <div class="indent">
92decada7SGreg Roach        <?= $yahrzeit->fact->date()->display(true) ?>,
10dd6b2bfcSGreg Roach        <?= I18N::translate('%s year anniversary', $yahrzeit->fact->anniv) ?>
11dd6b2bfcSGreg Roach    </div>
12dd6b2bfcSGreg Roach<?php endforeach ?>
13