mirror of
https://github.com/voc/streaming-website
synced 2024-11-10 14:44:21 +00:00
14 lines
292 B
PHP
14 lines
292 B
PHP
<?php
|
|
|
|
require_once('lib/PhpTemplate.php');
|
|
require_once('lib/helper.php');
|
|
require_once('config.php');
|
|
|
|
$tpl = new PhpTemplate('template/page.phtml');
|
|
echo $tpl->render(array(
|
|
'page' => 'rooms',
|
|
'baseurl' => baseurl(),
|
|
'title' => 'Overview',
|
|
|
|
'rooms' => $GLOBALS['CONFIG']['ROOMS'],
|
|
));
|