mirror of
https://github.com/voc/streaming-website
synced 2024-11-10 14:44:21 +00:00
11 lines
237 B
PHP
11 lines
237 B
PHP
<?php
|
|
|
|
$relive = $conference->getRelive();
|
|
if(!$relive->isEnabled())
|
|
throw new NotFoundException('Internal Relive is disabled');
|
|
|
|
echo $tpl->render(array(
|
|
'page' => 'relive',
|
|
'title' => 'Relive!',
|
|
'talks' => $relive->getTalks(),
|
|
));
|