blob: 686d61ea380864cfc6b1b1ebf2f13c4367fb2aba (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<?php
$relive = new Relive();
if(!$relive->isEnabled())
throw new NotFoundException('Internal Relive is disabled');
echo $tpl->render(array(
'page' => 'relive',
'title' => 'Relive!',
'talks' => $relive->getTalks(),
));
|