Move menu into library
[infodrom/hallinta] / index.php
1 <?php
2 require_once('config.php');
3 require_once('lib/general.php');
4 require_once('lib/menu.php');
5
6 $jsfiles = array('lib/json_parse.js');
7 $jscode = '';
8 $menu = menu();
9 $html = process();
10 $debug = debug_info();
11
12 ?>
13 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
14 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="de">
15 <head>
16 <title>Kostenleistungsrechnung</title>
17 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
18 <?=load_js($jsfiles, $jscode);?>
19 <link href="stylesheet.css" rel="stylesheet" type="text/css">
20 <link href="style.css" rel="stylesheet" type="text/css">
21 </head>
22 <body>
23 <div id="header">
24 <h1>Kostenrechnung Friesoyther Wasseracht</h1>
25 <?=$menu; ?>
26 </div>
27
28 <div class="content">
29 <?=$html; ?>
30 </div>
31
32 <?=$debug; ?>
33 </body>
34 </html>