* old static image migrator implementation as cli command * auth id fix, renew works now * templates refactored to work with uploaded images
11 lines
446 B
PHTML
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>
|