blob: c94275a6a3dc0be42cc5579676a1e1c4f09bb9c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php
declare(strict_types=1);
use Fisharebest\Webtrees\I18N;
/**
* @var array<array> $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; ?>
|