New layout from Wasseracht
[infodrom/hallinta] / index.php
1 <?php
2 require_once('config.php');
3 require_once('lib/general.php');
4
5 $jsfiles = array('lib/json_parse.js');
6 $jscode = '';
7 $html = process();
8
9 ?>
10 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
11 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="de">
12 <head>
13 <title>Kostenleistungsrechnung</title>
14 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
15 <?=load_js($jsfiles, $jscode);?>
16 <link href="stylesheet.css" rel="stylesheet" type="text/css">
17 <link href="style.css" rel="stylesheet" type="text/css">
18 </head>
19 <body>
20 <div id="header">
21 <h1>Kostenrechnung Friesoyther Wasseracht</h1>
22  <div id="menu">
23   <ul id="nav">
24    <li><a href="#">Start</a></li>
25    <li><a href="#">Eingabe</a></li>
26    <li><a href="#">Abfragen</a></li>
27    <li><a href="#">FooBar</a></li>
28   </ul>
29  </div>
30 </div>
31
32 <div class="content">
33 <div class="right">
34 <?=$html; ?>
35 </div>
36
37 <div class="left">
38         <div class="box">
39                                 <h2>Details</h2>
40                                 Informationen zur Kostenstelle
41                                 <ul>
42                                 <li>Name</li>
43                                 <li>Länge</li>
44                                 <li>Gebiet</li>
45                                 <li>Kosten</li>
46                                 <li>WebGIS (geplant)</li>
47                                 </ul>
48         </div>
49
50 </div>
51
52 </div>
53
54 </body>
55 </html>