* download link ditance fix

* "judges" added to year template
This commit is contained in:
Danyi Dávid 2018-05-08 18:33:33 +02:00
parent b93616ab34
commit 1030e93078
2 changed files with 2 additions and 3 deletions

View File

@ -406,7 +406,7 @@ section.home > section.download {
section.download a.download {
display: block;
margin-bottom: 3px;
margin-bottom: 8px;
overflow: hidden;
}

View File

@ -1,4 +1,4 @@
<?php $this->layout('layout::default', ['title' => sprintf("%s's %s", $year, count($awardees) > 1 ? 'awardees' : 'awardee')]) ?>
<?php $this->layout('layout::default', ['title' => sprintf("%s's %s and judges", $year, count($awardees) > 1 ? 'awardees' : 'awardee')]) ?>
<section class="awardees">
<?php foreach ($awardees as $awardee): ?>
<a class="awardee" href="<?= $this->url('awardee', ['slug' => $awardee->getSlug()]) ?>">
@ -10,4 +10,3 @@
<?php endforeach; ?>
<?php $this->insert('app::judges.inc', ['judges' => $judges, 'year' => $year]) ?>
</section>