-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
50 lines (49 loc) · 1.55 KB
/
index.html
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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8"/>
<meta http-equiv="cache-control" content="no-cache" />
<meta http-equiv="cache-control" content="no-store" />
<meta http-equiv="cache-control" content="must-revalidate" />
<meta http-equiv="pragma" content="no-cache" />
<meta http-equiv="expires" content="0" />
<link href="favicon_tib.ico" rel="shortcut icon">
<title>VIVOPaths</title>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/snap.svg/0.4.1/snap.svg-min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery.address/1.6/jquery.address.min.js"></script>
<script src="vpaths.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<link href="vpaths.css" rel="stylesheet"></link>
<script type="text/javascript">
function init() {
$('#canvas').css({height: $(window).height() - HEADERH});
view = new View("#display").init();
}
</script>
</head>
<body onload="init()">
<header>
<div id="top">
<div id="search">
<input type="text" />
<div id="suggestions"></div>
</div>
<div id="help">
<span class="help-icon" title="Hilfe"><i class="fa fa-info"></i></span>
</div>
<div id="logo">
</div>
</div>
</header>
<div id="labels">
</div>
<div id="context">
</div>
<div id="splash">
</div>
<div id="canvas">
<svg id="display"></svg>
</div>
</body>
</html>