1*380303edSGreg Roach<?php 2*380303edSGreg Roach 3*380303edSGreg Roachuse Fisharebest\Webtrees\I18N; 4*380303edSGreg Roach 5*380303edSGreg Roach?> 6*380303edSGreg Roach<ul class="list-unstyled"> 7*380303edSGreg Roach <?php foreach ($results as $result) : ?> 8*380303edSGreg Roach <li> 9*380303edSGreg Roach <span class="badge badge-secondary"><?= I18N::number($result['count']) ?></span> 10*380303edSGreg Roach <a href="<?= e($result['record']->url()) ?>"> 11*380303edSGreg Roach <?= $result['record']->fullName() ?> 12*380303edSGreg Roach </a> 13*380303edSGreg Roach </li> 14*380303edSGreg Roach <?php endforeach ?> 15*380303edSGreg Roach</ul> 16