forked from WanderZ/SoCollate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
180 lines (77 loc) · 3.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>Collate, SoC style</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/page.css" rel="stylesheet">
</head>
<body>
<div class="navbar navbar-fixed-top navbar-inverse" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">Collage</a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="index.html">Main</a></li>
<li><a href="acad.html">Acad</a></li>
<li><a href="admin.html">Admin</a></li>
<li><a href="bidding.html">Bidding</a></li>
<li><a href="email.html">Email</a></li>
<li><a href="food.html">Food</a></li>
<li><a href="halls.html">Halls</a></li>
<li><a href="internet.html">Internet</a></li>
<li><a href="misc.html">Misc</a></li>
<li><a href="resources.html">Resources</a></li>
<li><a href="printing.html">Printing</a></li>
<li><a href="social.html">Social</a></li>
<li><a href="travel.html">Travel</a></li>
<li><a href="work.html">Work</a></li>
</ul>
</div><!-- /.nav-collapse -->
</div><!-- /.container -->
</div><!-- /.navbar -->
<div class="container">
<div class="row row-offcanvas row-offcanvas-right">
<div class="col-xs-12 col-sm-9">
<div class="jumbotron">
<h1>Welcome!</h1>
<p>This is but a series of collated links and information, specific to SoC.</p>
</div>
<div class="row">
<div class="col-6 col-sm-6 col-lg-4">
<h2>About</h2>
<p>Hi. Just that I was one of the confused lost souls out there when I just entered NUS SoC. Didn't think that anyone should go down that same confused path as I did.</p>
</div><!--/span-->
<div class="col-6 col-sm-6 col-lg-4">
<h2>Feedback</h2>
<p>This is of course, far from completion. If you have any thing that you find it fun or interesting for fellow computing students to know, do drop a suggestion here! If there is anything broken, irrelevant, do let me know too! Thank you!</p>
<p><a class="btn btn-primary btn-block" href="https://docs.google.com/forms/d/1OXUnraJO8Cp3-cvTmdHsrUel8iYIp00VoYYyBx2G2t8/viewform" role="button">Feedback Form</a></p>
</div><!--/span-->
</div><!--/row-->
</div><!--/span-->
</div><!--/row-->
<hr>
<footer>
<p>© 2014 <a href="http://www.facebook.com/andrewkzk">Collator</a> | Anything on this site is purely my humble opinion :)</p>
</footer>
</div><!--/.container-->
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/page.js"></script>
</body>
</html>