1*95768326SGreg Roach<?php use Fisharebest\Webtrees\I18N; ?> 2*95768326SGreg Roach 3*95768326SGreg Roach<table class="table table-bordered table-sm datatables wt-table-given-name" data-info="false" data-paging="false" data-searching="false" data-state-save="true" data-order="<?= e(json_encode($order ?? [[1, 'desc']])) ?>"> 4*95768326SGreg Roach <caption class="sr-only"> 5*95768326SGreg Roach <?= I18N::translate('Given names') ?> 6*95768326SGreg Roach </caption> 7*95768326SGreg Roach <thead> 8*95768326SGreg Roach <tr> 9*95768326SGreg Roach <th> 10*95768326SGreg Roach <?= I18N::translate('Given name') ?> 11*95768326SGreg Roach </th> 12*95768326SGreg Roach <th> 13*95768326SGreg Roach <?= I18N::translate('Individuals') ?> 14*95768326SGreg Roach </th> 15*95768326SGreg Roach </tr> 16*95768326SGreg Roach </thead> 17*95768326SGreg Roach <tbody> 18*95768326SGreg Roach <?php foreach ($given_names as $given_name => $count): ?> 19*95768326SGreg Roach <tr> 20*95768326SGreg Roach <td> 21*95768326SGreg Roach <?= e($given_name) ?> 22*95768326SGreg Roach </td> 23*95768326SGreg Roach <td> 24*95768326SGreg Roach <?= I18N::number($count) ?> 25*95768326SGreg Roach </td> 26*95768326SGreg Roach </tr> 27*95768326SGreg Roach <?php endforeach ?> 28*95768326SGreg Roach </tbody> 29*95768326SGreg Roach</table> 30