-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
65 lines (60 loc) · 2.63 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>geohub.github.com</title>
<link rel="stylesheet" type="text/css" href="style/style.css" />
<script type="text/JavaScript" src="lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript"
src="https://maps.googleapis.com/maps/api/js?sensor=false">
</script>
<script type="text/JavaScript" src="src/github.js"></script>
<script type="text/JavaScript" src="src/model.js"></script>
<script type="text/JavaScript" src="src/map.js"></script>
<script type="text/JavaScript" src="src/main.js"></script>
<!-- Google analytics -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-11993001-4']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div id="main">
<div id="banner">
<img src="images/banner.png" alt="banner" />
<br />
Travelling to another city? Use
<a href="http://geohub.github.com">geohub.github.com
</a> to locate
coders you might know, and meet awesome people.
</div>
<form id="login">
<label for="login-login">Your github username: </label>
<input id="login-login" type="text" value="" />
<input id="login-submit" type="submit" value="OK" />
</form>
<div id="progress"></div>
<form id="filters">
<label for="filters-non-forks">Your repos: </label>
<input id="filters-non-forks" type="checkbox"
checked="checked" />
<label for="filters-forks">Forks: </label>
<input id="filters-forks" type="checkbox" checked="checked" />
</form>
<div id="map"></div>
<div id="info"></div>
</div>
<div id="footer">
By <a href="http://twitter.com/jaspervdj">@jaspervdj</a>,
<a href="https://github.com/geohub/geohub.github.com">
fork me on github</a>.
</div>
<pre id="log"></pre>
</body>
</html>