includes/modals/referrers_modal.php
<dialog class="modal" id="referrers-modal">
<div>
<h2><?= h(t('section.referrers')) ?></h2>
<table>
<tbody>
<?php foreach ($referrers as $row): ?>
<tr>
<td>
<?= referrerIconHtml((string)$row['referrer']) ?>
<?= h((string)$row['label']) ?>
</td>
<td><?= h($row['views']) ?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</div>
</dialog>