1<?php use Fisharebest\Webtrees\I18N; ?> 2 3<ul> 4 <?php foreach ($given_names as $given_name => $count): ?> 5 <li> 6 <span dir="auto"><?= e($given_name) ?></span> 7 <?php if ($show_totals): ?> 8 (<?= I18N::number($count) ?>) 9 <?php endif ?> 10 </li> 11 <?php endforeach ?> 12</ul> 13