-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
87 lines (83 loc) · 3.39 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
<!doctype html>
<head>
<meta charset="utf-8">
<title>Let's meet Halfway!</title>
<meta name="description" content="can you meet me halfway?">
<meta name="author" content="halfway hackathon team">
<!-- Mobile viewport optimized: j.mp/bplateviewport -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="http://fonts.googleapis.com/css?family=Expletus+Sans:400,500,600,700" rel="stylesheet" type="text/css" >
<link href="http://fonts.googleapis.com/css?family=Lato:100,100italic,300,300italic,400,400italic,700,700italic,900,900italic" rel="stylesheet" type="text/css" >
<link rel="stylesheet" href="stylesheets/style.css">
</head>
<body>
<div id="fb-root"></div>
<div id="overlay" style='display: none;'>
<div class="center">
<h2>Please select login method</h2>
<button onclick="hw.updateProvider('facebook')">facebook</button>
<button onclick="hw.updateProvider('foursquare')">foursquare</button>
</div>
</div>
<div id="broken-bar">Not working? Something broken? We're probably messing with code right now. Feel free to poke us on Twitter <a href="http://twitter.com/hajder">@hajder</a> | <a href="http://twitter.com/zgryw">@zgryw</a>.</div>
<div id="container">
<header>
<h1>halfway</h1>
<blockquote id="quote">
Can you meet me halfway, right at the boarderline
<br/>
That's where I'm gonna wait, for you
<br/>
<div class="author">The Black Eyed Peas - Meet me halfway</div>
</blockquote>
</header>
<div id="main" role="main">
<div>
</div>
<div id='friend_searcher'>
<span id="new_friend" style="float: left;">
<label for="friend_address">
Address:
</label>
<input type="text" id="friend_address">
</span>
<button id="add_friend" style="float: left;">Add friend</button>
</div>
<div id='categories' style='display: none;'>
<ul>
<li>Find a place:</li>
<li class='link'><a href="#">cafe</a></li>
<li class='link'><a href="#">hotel</a></li>
<li class='link'><a href="#">pub</a></li>
<li class='link'><a href="#">restaurant</a></li>
<li class='link'><a href="#">cinema</a></li>
<li><input type="text" id="search_query"></input></li>
</ul>
</div>
<div id='start_over' style='display: none; float: right;'>
<a href='/'>Start over</a>
</div>
<div id='statusbar'>
</div>
<div id="map_canvas" style="width: 100%; height: 600px"></div>
</div>
<footer>
Hakaton Halfway Team © 2011
</footer>
</div>
<script src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script src="http://connect.facebook.net/en_US/all.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.js"></script>
<script>window.jQuery || document.write("<script src='javascripts/libs/jquery-1.5.2.min.js'>\x3C/script>")</script>
<script src='javascripts/application.js'></script>
<script src='javascripts/map.js'></script>
<script src='javascripts/fb.js'></script>
<script src='javascripts/4sq.js'></script>
<script>
var _gaq=[["_setAccount","UA-22732475-1"],["_trackPageview"]];
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];g.async=1;
g.src=("https:"==location.protocol?"//ssl":"//www")+".google-analytics.com/ga.js";
s.parentNode.insertBefore(g,s)}(document,"script"));
</script>
</body>
</html>