xref: /webtrees/resources/views/statistics/families/top10-nolist-spouses.phtml (revision 81b729d3a9a6e0a0e8b96285d1ad7955d2d0c659)
1<?php
2
3declare(strict_types=1);
4
5/**
6 * @var array<array> $records
7 */
8
9?>
10
11<?php foreach ($records as $record) : ?>
12    <?php $family = $record['family']; ?>
13    <a href="<?= e($family->url()) ?>"><?= $family->fullName() ?></a> (<?= $record['age'] ?>)
14<?php endforeach; ?>
15