forked from Bogidon/NarWall
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
137 lines (109 loc) · 4.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NarWall</title>
<link href="web/css/bootstrap.min.css" rel="stylesheet">
<link href="web/css/custom.css" rel="stylesheet">
<link href="web/font-awesome-4.1.0/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<script src="web/js/respond.min.js"></script>
</head>
<body>
<a href="https://github.com/bogidon/NarWall"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/365986a132ccd6a44c23a9169022c0b5c890c387/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f7265645f6161303030302e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png"></a>
<header class="header">
<div class="text-vertical-center">
<h1>NarWall</h1>
<h3>The Social Bulletin</h3>
<br>
<a href="#container" class="btn btn-dark btn-lg">Find Out More</a>
</div>
</header>
<div id="container" class="container">
<div class="col-sm-10 col-sm-offset-1">
<div class="page-header text-center">
<h1>Made by Students for Students</h1>
</div>
<p class="lead text-center">
NarWall is the answer to keeping up to date with events, news, and clubs on campus.
</p>
<p class="text-center">
</p>
</div>
</div>
<div class="divider" id="section2"></div>
<section class="bg-1">
<div class="col-sm-6 col-sm-offset-3 text-center"><h2 style="padding:20px;background-color:rgba(5,5,5,.8)">Never be stuck in your dorm room again</h2></div>
</section>
<div class="divider"></div>
<div class="container" id="section3">
<div class="col-sm-8 col-sm-offset-2 text-center">
<h1>NarWall Features</h1>
</div>
</div>
<div class="container" id="section4">
<div class="row">
<div class="col-md-4 text-center">
<h3>Complete Club Listings</h3>
<p>Looking to join or find out more about a club? Look no further. NarWall has every club on campus organized by category and up to date. </p>
</div>
<div class="col-md-4 text-center">
<h3>Events and News</h3>
<p>New York City is a place for busy people. NarWall informs you on anything that's happening nearby. Never miss anything from a rooftop party to a hackathon. </p>
</div>
<div class="col-md-4 text-center">
<h3>Favorites</h3>
<p>Record and track your favorite clubs. Sort NarWall accordingly to your tastes and preferences. </p>
</div>
</div>
</div>
<br>
<br>
<div class="divider"></div>
<section class="bg-3" id="section5">
<div class="col-sm-6 col-sm-offset-3 text-center"><h2 style="padding:20px;background-color:rgba(5,5,5,.8)"><a href="#" style="color: #FFF"> Get the App Now</a> <i class="fa fa-cloud-download"></i></h2>
</div>
</section>
<footer>
<div class="container">
<div class="row">
<div class="col-lg-10 col-lg-offset-1 text-center">
<h4><strong>Built by the New School Crew</strong>
</h4>
<p>Design and Hack<br>Hackathon</p>
<br>
<ul class="list-inline">
<li>
<a href="#"><i class="fa fa-facebook fa-fw fa-2x"></i></a>
</li>
<li>
<a href="#"><i class="fa fa-twitter fa-fw fa-2x"></i></a>
</li>
<li>
<a href="#"><i class="fa fa-envelope fa-fw fa-2x"></i></a>
</li>
</ul>
</div>
</div>
</div>
</footer>
<script src="//code.jquery.com/jquery-1.10.2.min.js"></script>
<script>
// Scrolls to the selected menu item on the page
$(function() {
$('a[href*=#]:not([href=#])').click(function() {
if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') || location.hostname == this.hostname) {
var target = $(this.hash);
target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
if (target.length) {
$('html,body').animate({
scrollTop: target.offset().top
}, 1000);
return false;
}
}
});
});
</script>
</body>
</html>