Dávid Danyi b93616ab34 * judges menu removed
* awardees reactored into awards, judges are now included on a per year basis
* lots of minor style adjustments to follow the design guideline
2018-05-08 18:10:38 +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['image'])) ?>">
<span class="title"><?= $judge['name']?></span><br>
<span class="description"><?= $judge['desc']?></span>
</section>
<?php endforeach; ?>
</section>