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