-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
105 lines (101 loc) · 3.99 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Accessible Melbourne</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<!-- Here we are using vanilla bootstrap replaced with the BootSwatch Readable theme, and the Paypal accessibility plugin -->
<link href="ui/bootstrap/css/bootstrap.css" rel="stylesheet">
<link href="ui/bootstrap/css/bootstrap-responsive.css" rel="stylesheet">
<link href="ui/bootstrap/css/bootstrap-accessibility.css" rel="stylesheet">
<link href="map/css/l.geosearch.css" rel="stylesheet" />
<!-- Include Leaflet.js Stylesheet -->
<link rel="stylesheet" href="map/css/leaflet.css" />
<!--Include Leaflet.js -->
<script src="map/js/leaflet.js"></script>
<script src="map/js/l.control.geosearch.js"></script>
<script src="map/js/l.geosearch.provider.openstreetmap.js"></script>
<style>
body {
padding-top: 60px;
/* 60px to make the container go all the way to the bottom of the topbar */
}
/* Ensure Leaflet map has a defined height */
#map {
height: 720px;
}
</style>
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="../ui/bootstrap/js/html5shiv.js"></script>
<![endif]-->
<!-- Fav and touch icons -->
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="ui/bootstrapico/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="ui/bootstrapico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="ui/bootstrapico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="ui/bootstrapico/apple-touch-icon-57-precomposed.png">
<link rel="shortcut icon" href="ui/bootstrapico/favicon.png">
</head>
<body>
<div class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<a href="ui" class="navbar-brand">Accessible Melbourne</a>
<button class="navbar-toggle" type="button" data-toggle="collapse" data-target="#navbar-main">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="navbar-collapse collapse" id="navbar-main">
<ul class="nav navbar-nav">
<li>
<a href="./about.html">About</a>
</li>
<li>
<a href="./team.html">Team</a>
</li>
<li>
<a href="./todo.html">Todo list</a>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="http://govhack.org">GovHack Home</a></li>
<li><a href="https://data.melbourne.vic.gov.au/">City of Melbourne Open Data Platform</a></li>
</ul>
</div>
</div>
</div>
<div class="container">
<div id="map">
</div>
</div>
<!-- /container -->
<footer>
<div class="navbar navbar-default">
<div class="container">
<div class="navbar-header">
<a href="http://creativecommons.org/licenses/by-sa/3.0/au" class="navbar-brand">Proudly licensed under Creative Commons 3.0 Attribution Share-Alike CC-BY-SA</a>
</div>
<div class="navbar-collapse collapse" id="navbar-footer">
<ul class="nav navbar-nav navbar-right">
<li>
<a href="https://twitter.com/search?q=%23govhack">#govhack on the Twitters</a>
</li>
</ul>
</div>
</div>
</div>
</footer>
<!-- Le javascript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="ui/bootstrap/js/jquery.js"></script>
<script src="ui/bootstrap/js/bootstrap.js"></script>
<!-- Include Leaflet.js overlays -->
<script src="map/js/map.js"></script>
<!-- overlays have to be included after the DIV element is declared -->
</body>
</html>