aboutsummaryrefslogtreecommitdiff
path: root/index.php
blob: ccd2abd249a0fe0f165166f2c16c2b2e607a46b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?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' => 'Saal 1',
		'saal2' => 'Saal 2',
		'saalg' => 'Saal G',
		'saalz' => 'Saal Z',
		'launge' => 'Launge',
		'sendezentrum' => 'Sendezentrum',
	),
));