includes/modals/countries_modal.php
<dialog class="modal" id="countries-modal">
<div>
<h2><?= h(t('section.countries')) ?></h2>
<table>
<tbody>
<?php foreach ($countries as $row): ?>
<?php $cc = strtolower((string)$row['country']); ?>
<tr>
<td>
<?= countryFlag($cc) ?> <span data-country="<?= h(strtoupper($cc)) ?>"><?= h(countryName($cc)) ?></span>
</td>
<td><?= h($row['views']) ?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</div>
</dialog>