Danyi Dávid c4438f7e8c * image upload handling
* old static image migrator implementation as cli command
* auth id fix, renew works now
* templates refactored to work with uploaded images
2018-05-13 22:34:15 +02:00

11 lines
446 B
PHTML

<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>