blob: 07944a32949689673d89f5481f5d3e03a4413c62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php
declare(strict_types=1);
use Fisharebest\Webtrees\Family;
use Fisharebest\Webtrees\I18N;
/**
* @var array<array{family:Family,count:int}> $records
*/
?>
<?php foreach ($records as $record) : ?>
<?php $family = $record['family']; ?>
<a href="<?= e($family->url()) ?>"><?= $family->fullName() ?></a>
- <?= I18N::plural('%s grandchild', '%s grandchildren', $record['count'], I18N::number($record['count'])) ?>
<?php endforeach; ?>
|