11 lines
446 B
PHTML
Raw Permalink Normal View History

<section class="judges">
<h1><?=$year?> judges</h1>
<?php foreach ($judges as $judge): ?>
<section class="judge">
<img class="profile" src="<?= $this->url('api.judge-image', ['slug' => $judge->getSlug()]) ?>">
<span class="title"><?= $judge->getPrefix().$judge->getName()?></span><br>
<span class="description"><?= $judge->getTitles()[0]->getTitle()?></span>
</section>
<?php endforeach; ?>
</section>