-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
115 lines (86 loc) · 3.36 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
106
107
108
109
110
111
112
113
114
115
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Weather Hack</title>
<link rel="stylesheet" href="css/foundation.css" />
<link rel="stylesheet" href="css/custom.css" />
<script src="js/vendor/modernizr.js"></script>
<script type="text/javascript" src="//use.typekit.net/eeq7iuf.js"></script>
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
<link rel="stylesheet" href="http://i.icomoon.io/public/temp/8f8633bbca/UntitledProject1/style.css">
</head>
<body>
<nav class="top-bar" data-topbar>
<ul class="title-area">
<li class="name">
<h1><a href="/">Weather Hack</a></h1>
</li>
<!-- Remove the class "menu-icon" to get rid of menu icon. Take out "Menu" to just have icon alone -->
<li class="toggle-topbar menu-icon"><a href="#"><span></span></a></li>
</ul>
<section class="top-bar-section">
<!-- Right Nav Section -->
<ul class="right">
<li class=""><a id="scores">Scores</a></li>
</ul>
</section>
</nav>
<div class="row" id="logo">
<div class="large-6 columns">
<h1>Weather Hack</h1>
<h2>Bet on the weather</h2>
<a href="#" class="button" id="loginfb">Login with Facebook</a>
<div id="output"><h3></h3></div>
<a id='start' class='button'>Play Now</a>
</div>
</div>
<div class="row" id="info">
<div class="large-12 columns">
<div id="template-container"></div>
<script type="text/html" id="template1">
<span class="icon-earth"></span>
<div class="location" data-content="location"></div>
<div class="question" data-content="question"></div>
<div class="small-6 large-2">
<input type="number" name="temperature" id="temp" placeholder="°F" min="20" max="140">
<input type="submit" class="button answer">
</div>
</script>
<script type="text/html" id="template2">
<div class="location" data-content="location"></div>
<div class="question" data-content="question"></div>
<a data-answer="yes" class="button answer">Yes</a>
<a data-answer="no" class="button answer">No</a>
</script>
<div id="done">
<h2>You're done for today!</h2>
<hr>
</div>
</div>
</div>
<div class="row" id="score">
<div class="large-12 columns">
<h1>Scores</h1>
<ol id="score-container"></ol>
</div></div>
<script src="js/vendor/jquery.js"></script>
<script src="js/foundation.min.js"></script>
<script>
$(document).foundation();
</script>
<script src="js/jquery.parse.js"></script>
<script src="js/jquery.loadTemplate-1.4.3.min.js"></script>
<script src=" js/app.js"></script>
<script src="js/facebook.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-40867931-6', 'weatherhack.com');
ga('send', 'pageview');
</script>
</body>
</html>