aboutsummaryrefslogtreecommitdiff
path: root/index.php
blob: 46585a8565af45a5d10a61deee927454e6c19004 (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('config.php');

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

	'rooms' => array('saal1','saal2','saalg','saalz','launge','sendezentrum'),
));