1380303edSGreg Roach<?php 2380303edSGreg Roach 3380303edSGreg Roachuse Fisharebest\Webtrees\I18N; 4380303edSGreg Roach 57c2c99faSGreg Roach/** 67c2c99faSGreg Roach * @var array<string,mixed> $results 77c2c99faSGreg Roach */ 87c2c99faSGreg Roach 9380303edSGreg Roach?> 10380303edSGreg Roach<ul class="list-unstyled"> 11380303edSGreg Roach <?php foreach ($results as $result) : ?> 12380303edSGreg Roach <li> 13*4ab569c4SGreg Roach <span class="badge bg-secondary"><?= I18N::number($result['count']) ?></span> 14380303edSGreg Roach <a href="<?= e($result['record']->url()) ?>"> 15380303edSGreg Roach <?= $result['record']->fullName() ?> 16380303edSGreg Roach </a> 17380303edSGreg Roach </li> 18380303edSGreg Roach <?php endforeach ?> 19380303edSGreg Roach</ul> 20