-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
192 lines (182 loc) · 7.31 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
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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="googlebot" content="noindex, nofollow">
<meta name="robots" content="noindex, nofollow">
<title>WolfBeacon</title>
<link rel="stylesheet" href="assets/css/style.css"> </head>
<body>
<header>
<div class="container">
<a href="#" onclick="backToTop();">
<div class="logo">WolfBeacon</div>
</a>
<ul class="nav-menu">
<a href="#features">
<li class="nav-item">Features</li>
</a>
<a href="#about">
<li class="nav-item">About</li>
</a>
<a href="#joinUs">
<li class="nav-item">Join Our Team</li>
</a>
</ul>
</div>
</header>
<section class="landing">
<div class="container">
<div class="row">
<div class="cols-50 landing-left">
<div class="main-img"> </div>
<div class="coming-soon">
<p>Coming Soon On</p>
<div class="cs-store">
<div class="store-icn"><img src="/assets/img/android-icon.png"></div>
<div class="store-icn"><img src="/assets/img/ios-icon.png"></div>
<div class="store-icn"><img src="/assets/img/webapp-icon.png"></div>
</div>
</div>
</div>
<div class="cols-50 landing-right">
<div class="text-desc">
<p> Welcome to the world’s first platform for Hackers and Organizers! </p>
</div>
<div class="subscribe">
<form action="https://wolfbeacon.herokuapp.com/api/v1/mail/" method="post", id="mailingForm">
<input type="email" name="emailAddress" class="subscribe-input" placeholder="[email protected]">
<button type="submit" class="button subscribe-submit">Stay Updated</button>
</form>
</div>
</div>
</div>
</div>
</section>
<section class="features" id="features">
<h3 class="section-title">Features</h3>
<div class="container">
<div class="row">
<div class="cols-33 fe-img">
<div class="fe-icon"><img src="/assets/img/open-source-icon.png"></div>
</div>
<div class="cols-66 fe-text">
<div class="fe-title">Open Source Software</div>
<div class="fe-desc">The whole platform is available for community customization on GitHub.</div>
</div>
</div>
<div class="row row-alt">
<div class="cols-33 fe-img">
<div class="fe-icon"><img src="/assets/img/no-ads-icon.png"></div>
</div>
<div class="cols-66 fe-text">
<div class="fe-title">Completely Free & No Ads</div>
<div class="fe-desc">Unlike most services which bombard users with Ads or secretly sell User Data, we offer the full service with no catches. Thanks to a passionate group of hackers who just want to create something awesome.</div>
</div>
</div>
<div class="row">
<div class="cols-33 fe-img">
<div class="fe-icon"><img src="/assets/img/quick-signup-icon.png"></div>
</div>
<div class="cols-66 fe-text">
<div class="fe-title">Quick Sign-Ups</div>
<div class="fe-desc">Hackers are provided with all the information of a hackathon in one place. With an easy click registration you can favorite or apply to hackathon with a click of a button.</div>
</div>
</div>
<div class="row row-alt">
<div class="cols-33 fe-img">
<div class="fe-icon"><img src="/assets/img/open-source-icon.png"></div>
</div>
<div class="cols-66 fe-text">
<div class="fe-title">More Funding = Bigger Hackathons</div>
<div class="fe-desc">With free 1-on-1 consultation with hackathon organizers we provide the tools and expertise to increase the amount of funds your hackathon can receive. </div>
</div>
</div>
</div>
</section>
<section class="about" id="about">
<div class="container">
<h3 class="section-title">Who We Are</h3>
<div class="about-text"> We're a group of passionate hackers who wanted a cool side project that has a big impact on hackathons around the globe. With hackathons giving so much to hackers it only makes sense to give back to the organizers so that they can make hackathons
much bigger thereby improving the experience for hackers once again! </div>
<div class="stats-container">
<div class="people-cnt">
<div><strong>11</strong><br>People</div>
</div>
<div class="from">FROM</div>
<div class="country-cnt">
<div><strong>11</strong><br>Countries</div>
</div>
</div>
<div class="social-media">
<h3 class="title">Come find us on</h3>
<ul class="social-cnt">
<li class="sm-icon"> </li>
<li class="sm-icon"> </li>
<li class="sm-icon"> </li>
<li class="sm-icon"> </li>
<li class="sm-icon"> </li>
</ul>
</div>
</div>
</section>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script>
<script type="text/javascript">
var $root = $('html, body');
function scrollTo()
{
$('a[href^="#"]:not([href="#"])').on('click', function(e)
{
e.preventDefault();
var $target = $(this.hash);
var hash = this.hash;
$root.stop().animate(
{
scrollTop: $target.offset().top - 70
}, 900, 'swing', function()
{
location.hash = hash;
});
})
return false;
}
function backToTop(e)
{
event.preventDefault();
$root.animate(
{
scrollTop: 0
}, 900, 'swing', function()
{
location.hash = "#";
});
return false;
}
</script>
<script type="application/javascript">
var form = document.getElementById("mailingForm");
form.onsubmit = function (e) {
// stop the regular form submission
e.preventDefault();
// collect the form data while iterating over the inputs
var data = {};
for (var i = 0, ii = form.length; i < ii; ++i) {
var input = form[i];
if (input.name) {
data[input.name] = input.value;
}
}
// construct an HTTP request
var xhr = new XMLHttpRequest();
xhr.open(form.method, form.action, true);
xhr.setRequestHeader('Content-Type', 'application/json; charset=UTF-8');
// send the collected data as JSON
xhr.send(JSON.stringify(data));
xhr.onloadend = function () {
// done
};
};
</script>
</body>
</html>