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-09 15:16:00 +02:00
|
|
|
<img class="profile" src="<?= $this->serverurl(sprintf('/img/judges/%s.jpg', $judge['slug'])) ?>">
|
2018-05-08 18:10:38 +02:00
|
|
|
<span class="title"><?= $judge['name']?></span><br>
|
2018-05-09 15:16:00 +02:00
|
|
|
<span class="description"><?= $judge['title']?></span>
|
2018-05-08 18:10:38 +02:00
|
|
|
</section>
|
|
|
|
|
<?php endforeach; ?>
|
|
|
|
|
</section>
|