forked from rdavid8/Voluntold
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
126 lines (123 loc) · 4.97 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
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="en">
<header>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" type="text/css" href="css/animate.css">
<link rel="stylesheet" type="text/css" href="css/demo.css">
<link rel="stylesheet" type="text/css" href="css/cs-select.css">
<link rel="stylesheet" type="text/css" href="css/cs-skin-border.css">
<link rel="stylesheet" type="text/css" href="css/q2.css">
<link rel="stylesheet" type="text/css" href="css/base.css">
<link rel="stylesheet" type="text/css" href="css/modules.css">
<link rel="stylesheet" type="text/css" href="css/sidebar.css">
<link rel="stylesheet" type="text/css" href="css/logopullout.css">
<link rel="stylesheet" type="text/css" href="css/mobile.css">
<link rel="shortcut icon" href="/favicon.ico?" type="image/x-icon">
<link href='https://fonts.googleapis.com/css?family=Pragati+Narrow' rel='stylesheet' type='text/css'>
<script id="result-template" type="text/x-handlebars-template">
<article>
<h1>{{name}}</h1>
<a href="{{url}}"><img src="{{image_url}}"/></a>
<address>
<div id="sidebar-address">
{{address}} <br>
{{city}}, {{state_code}} {{postal_code}} <br>
{{display_phone}}
</div>
</address>
</article>
</script>
</header>
<head>
<meta charset="UTF-8">
<title>Voluntold</title>
</head>
<body>
<a href='questions'><div id='qtrigger'></div></a>
<section id='wrapper'>
<section id="landing">
<div id="f1">
<h1>Welcome to Voluntold</h1>
</div>
<div id="f2">
<h1>Let Us Help You To Give Back to Your Community</h1>
</div>
<div id="shade"></div>
</section>
<img id="bg" src="img/bg1.png">
<img id="bg2" src="img/bg2.png">
<img id="bg3" src="img/bg3.png">
<section id="questions">
<form id="form">
<section id="q1">
<div id="how">How Would You Like to Help?</div>
<select class="cs-select cs-skin-border" id="term">
<option selected="selected" value="humane society">Humane Society</option>
<option value="food bank">Food Bank</option>
<option value="church">Church</option>
<option value="homeless shelter">Homeless Shelter</option>
<option value="charity">Charity</option>
</select>
</section>
<section id="q2">
<span class="input input--kyo">
<input type="text" name="location" value="Chicago" id="location">
<label class="input__label input__label--kyo">
<span class="input__label-content input__label-content--kyo">What Area Would You Like to Serve?</span>
</label>
<input id ="submit2" type="submit" value="Submit">
</span>
</section>
</form>
</section>
</section>
<section id="error">
<div id="e1">
<h1>Sorry, No Results Found</h1>
</div>
<div id="e2">
<h1>Please Restart the Search</h1>
</div>
<img id="bg4" src="img/bg4.png">
<div id="shade2"></div>
</section>
<section id="about">
<img id="x" src="img/x.png">
<div id="close"></div>
<div id="mainContainer">
<iframe id="video" src="https://www.youtube.com/embed/q4je9N26ouY?rel=0&showinfo=0"></iframe>
</div>
<div id="bioContainer">
<div id='henry'><img id="henryG" src="img/henry.gif"></div>
<div id='aj'><img id="ajG" src="img/aj.gif"></div>
<div id='ryan'><img id="ryanG" src="img/ryan.gif"></div>
<div id='brandon'><img id="ryanG" src="img/brandon.gif"></div>
</div>
</section>
<div id="sidebar"></div>
<div id="map"></div>
<img id="logo" src="img/logo.png">
<div class="logopullout" id="logopulloutStart"></div>
<div class="home">home</div>
<div class="about">about</div>
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="vendors/html5sql.js"></script>
<script src="vendors/webdb.js"></script>
<script src="vendors/page.js"></script>
<script src="vendors/handlebars.js"></script>
<script src="vendors/classie.js"></script>
<script src="vendors/selectFx.js"></script>
<script src="vendors/cssStuff.js"></script>
<script src="js/yelp.js"></script>
<script src="js/data.js"></script>
<script src="js/google.js"></script>
<script src="js/menu.js"></script>
<script src="js/landingPageController.js"></script>
<script src="js/questionsController.js"></script>
<script src="js/errorPageController.js"></script>
<script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyD8XmSCOn83UDkb8RI9xhf0PYHNexEwrJQ&callback=initMap"></script>
<script src="vendors/infobubble.js"></script>
<script src="js/routes.js"></script>
</body>
</html>