2018-05-08 18:10:38 +02:00
|
|
|
<section class="judges">
|
|
|
|
|
<h1><?=$year?> judges</h1>
|
|
|
|
|
<?php foreach ($judges as $judge): ?>
|
|
|
|
|
<section class="judge">
|
2018-05-13 22:34:15 +02:00
|
|
|
<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>
|
2018-05-08 18:10:38 +02:00
|
|
|
</section>
|
|
|
|
|
<?php endforeach; ?>
|
|
|
|
|
</section>
|