-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
54 lines (51 loc) · 1.81 KB
/
index.php
File metadata and controls
54 lines (51 loc) · 1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html>
<head>
<meta name="generator"content="HTML Tidy for HTML5 (experimental) for Windows https://github.com/w3c/tidy-html5/tree/c63cc39" />
<meta charset="utf-8" />
<title>
SWAG City Monitor
</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.css" />
<link rel="stylesheet" href="css/modellstadt.css" />
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css" />
</head>
<body>
<!-- Navigation bar at the top of the page -->
<div class="navbar navbar-inverse navbar-fixed-top" id="navbar">
</div>
<header class="jumbotron subhead">
<div class="container">
<h1>
<img src="swag.png" style="padding-right:3%; height:100px" />
City Monitor
</h1>
</div>
</header>
<!-- Data table and map -->
<div class="container">
<div class="row">
<div id="data" class="col-md-4">
<table id="table1" class="table table-striped table-responsive">
<thead><tr><th>Phenomenon</th><th>Value</th><th>Unit</th></tr></thead>
<tbody id="tbody">
<!-- Content created in map.js -->
</tbody>
</table>
</div>
<div id="map-area" class="col-md-8">
<div id="map"></div>
</div>
</div>
<hr />
</div>
<!-- Le javascript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/map.js"></script>
</body>
</html>