-
Notifications
You must be signed in to change notification settings - Fork 1
/
license.html
156 lines (103 loc) · 5.22 KB
/
license.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<!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">
<!-- Include Leaflet.js Stylesheet -->
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.css" />
<!--Include Leaflet.js -->
<script src="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.js"></script>
<style>
body {
padding-top: 60px; /* 60px to make the container go all the way to the bottom of the topbar */
}
</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="/index.html" 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">
<h1>License details</h1>
<p class="lead">
We support open source and have therefore chosen a Creative Commons licence.
</p>
<a rel="license" href="http://creativecommons.org/licenses/by/4.0/">
<img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by/4.0/88x31.png" />
</a><br />
<span xmlns:dct="http://purl.org/dc/terms/" property="dct:title">Accessible Melbourne</span>
by <a xmlns:cc="http://creativecommons.org/ns#" href="http://accessible-melbourne.github.io/" property="cc:attributionName" rel="cc:attributionURL">http://accessible-melbourne.github.io/</a>
is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.
<br />Based on a work at <a xmlns:dct="http://purl.org/dc/terms/" href="https://github.com/accessible-melbourne/accessible-melbourne.github.io" rel="dct:source">https://github.com/accessible-melbourne/accessible-melbourne.github.io</a>.
</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">
</ul>
<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="overlays.js"></script>
<!-- overlays have to be included after the DIV element is declared -->
</body>
</html>