* 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
This commit is contained in:
@@ -43,8 +43,8 @@ return function (Application $app, MiddlewareFactory $factory, ContainerInterfac
|
||||
'the-prize.article'
|
||||
);
|
||||
|
||||
$app->get('/judges', App\Handler\JudgesHandler::class, 'judges');
|
||||
$app->get('/awardees', App\Handler\AwardeeRedirectHandler::class, 'awardees');
|
||||
$app->get('/awardees/{year:\d+}', App\Handler\AwardeeHandler::class, 'awardees-by-year');
|
||||
// $app->get('/judges', App\Handler\JudgesHandler::class, 'judges');
|
||||
$app->get('/awards', App\Handler\AwardeeRedirectHandler::class, 'awardees');
|
||||
$app->get('/awards/{year:\d+}', App\Handler\AwardeeHandler::class, 'awardees-by-year');
|
||||
$app->get('/awardee/{slug}', App\Handler\ProfileHandler::class, 'awardee');
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user