aboutsummaryrefslogtreecommitdiff
path: root/index.php
blob: 96bb197de0cf2198057018e2be7adef07ad0e51f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

require_once('lib/PhpTemplate.php');
require_once('lib/helper.php');
require_once('lib/config.php');

$tpl = new PhpTemplate('template/page.phtml');
echo $tpl->render(array(
	'page' => 'rooms',
	'baseurl' => baseurl(),
	'title' => 'Overview',

	'rooms' => $GLOBALS['CONFIG']['ROOMS'],
));