-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
173 lines (165 loc) · 7.69 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Home | Computing Society</title>
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="css/bootstrap.css" media="screen" title="no title" charset="utf-8">
<link rel="stylesheet" href="css/style.css" media="screen" title="no title" charset="utf-8">
</head>
<body>
<header>
<div class="wrapper">
<nav>
<a class='logo' href="#">
<img src="assets/img/logo.png" alt="logo" />
</a>
<a class="nav-link" href="news.html">News</a>
<a class="nav-link" href="projects.html">Projects</a>
<a class="nav-link" href="stream.html">Live Stream</a>
<a href="forum.html">Forum</a>
<a class="flat-btn flat-btn-warning" href="#">
<span class="glyphicon glyphicon-pencil"></span>
SignUp
</a>
<a class="flat-btn flat-btn-default" href="#">
<span class="glyphicon glyphicon-user"></span>
LogIn
</a>
</nav>
</div>
</header>
<!-- Head Container -->
<div class="container-fluid head_cont text-center">
<div id="search">
<form action="" method="get">
<input type="text" name="search_text" id="search_text" placeholder="Looking for something?"/>
<button type="button" name="search_button" id="search_button">
<span class="glyphicon glyphicon-search"></span>
</button>
</form>
</div>
</div>
<!-- DashBoard -->
<div class="container-fluid dashboard text-center">
<div id="myCarousel" class="carousel slide text-center" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox">
<div class="item active">
<div class="img1"></div>
<div class="carousel-caption">
<h1 class="">Quantum Computing</h1>
<p>Is it coming sooner than expected?</p>
</div>
</div>
<div class="item">
<div class="img2"></div>
<div class="carousel-caption">
<h1>Cloud Computing</h1>
<p>It's the new 'in' thing.</p>
</div>
</div>
<div class="item">
<div class="img3"></div>
<div class="carousel-caption">
<h1>Making Moves</h1>
<p>UWI Computing Society partners with Palisadoes.</p>
</div>
</div>
</div>
<!-- Left and right controls -->
<a class="left carousel-control" href="#myCarousel" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#myCarousel" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
<!-- Content -->
<div class="container-fluid content">
<div class="row">
<h1 class="heading">Latest News</h1>
<div class="col-lg-8">
<div class="card">
<div class="card-image">
<img src="assets/img/news1.jpg" alt="interest-group">
<div class="card-overlay"></div>
<span class="card-title">
Have an Interest?
</span>
</div>
<div class="card-content">
Find out if its with computing with our newly created interest groups.
</div>
<div class="card-action">
<a href="#"><span class="glyphicon glyphicon-book"></span> Read More</a>
</div>
</div>
<div class="card">
<div class="card-image">
<img src="assets/img/news2.jpg" alt="interest-group">
<div class="card-overlay"></div>
<span class="card-title">
Version Control, Git it?
</span>
</div>
<div class="card-content">
Im so excited!, hope you are too. We are having a learning session for those who want to learn Git.
It's a very valuable tool to learn as software companies these days are moving towards CI/CD. That will also be explained
so come on out.
</div>
<div class="card-action">
<a href="#"><span class="glyphicon glyphicon-book"></span> Read More</a>
</div>
</div>
<div class="card">
<div class="card-image">
<img src="assets/img/news3.png" alt="interest-group">
<div class="card-overlay"></div>
<span class="card-title">
Want to hack Google?
</span>
</div>
<div class="card-content">
Okay so we're not going to actually hack Google but this is the first step. Come on out this Thursday to hack with us.
You'll learn a whole lot of exciting ways to hack systems.
</div>
<div class="card-action">
<a href="#"><span class="glyphicon glyphicon-book"></span> Read More</a>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="panel panel-warning">
<div class="panel-heading">
<h1 class="panel-title">Tweets/Posts</h1>
</div>
<div class="panel-body">
<div class="card">
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer">
<div class="row">
<div class="links col-lg-4">Home</div>
<div class="links col-lg-4">About</div>
<div class="col-lg-4">Contact Us</div>
</div>
<span class="copyright">Copyright © 2016</span>
</div>
<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
<script type="text/javascript" src="js/bootstrap.js"></script>
</body>
</html>