1380303edSGreg Roach<?php 2380303edSGreg Roach 3380303edSGreg Roachuse Fisharebest\Webtrees\I18N; 4380303edSGreg Roach 5*7c2c99faSGreg Roach/** 6*7c2c99faSGreg Roach * @var array<string,mixed> $results 7*7c2c99faSGreg Roach */ 8*7c2c99faSGreg Roach 9380303edSGreg Roach?> 10380303edSGreg Roach<ul class="list-unstyled"> 11380303edSGreg Roach <?php foreach ($results as $result) : ?> 12380303edSGreg Roach <li> 13380303edSGreg Roach <span class="badge badge-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