Dávid Danyi 77325b8e94 * judge-year many to many implemented, no admin yet
* judge images renamed to use generated slug, may change in the future...
2018-05-09 15:16:00 +02:00

11 lines
407 B
PHTML

<section class="judges">
<h1><?=$year?> judges</h1>
<?php foreach ($judges as $judge): ?>
<section class="judge">
<img class="profile" src="<?= $this->serverurl(sprintf('/img/judges/%s.jpg', $judge['slug'])) ?>">
<span class="title"><?= $judge['name']?></span><br>
<span class="description"><?= $judge['title']?></span>
</section>
<?php endforeach; ?>
</section>