-
Notifications
You must be signed in to change notification settings - Fork 2
/
forum.html
121 lines (117 loc) · 5.71 KB
/
forum.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Forum | 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="index.html">
<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</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>
<!-- Content -->
<div class="container-fluid forum content">
<div class="row">
<div class="col-lg-12">
<h1 class="heading">Forums</h1>
<div class="card card-danger">
<div class="card-content">
<span class="card-title">
General Discussions
</span>
<p>Make a post here if your post doesn't fall under the other categories.</p>
</div>
<div class="card-action">
<a href="#">Post <span class="glyphicon glyphicon-chevron-right"></span></a>
</div>
</div>
<div class="card card-warning">
<div class="card-content">
<span class="card-title">
Club Matters
</span>
<p>Any comments on the club? Meetings, Events, Members? Put it here.</p>
</div>
<div class="card-action">
<a href="#">Post <span class="glyphicon glyphicon-chevron-right"></span></a>
</div>
</div>
<div class="card card-primary">
<div class="card-content">
<span class="card-title">
Development
</span>
<p>Working on a projects? Need help? Ask, we wont bite. Not intentionally atleast.</p>
</div>
<div class="card-action">
<a href="#">Post <span class="glyphicon glyphicon-chevron-right"></span></a>
</div>
</div>
<div class="card card-success">
<div class="card-content">
<span class="card-title">
Tech Talk
</span>
<p>Where we post about anything tech. Phones, Laptops, Spider Robots? You name it.</p>
</div>
<div class="card-action">
<a href="#">Post <span class="glyphicon glyphicon-chevron-right"></span></a>
</div>
</div>
<div class="card card-info">
<div class="card-content">
<span class="card-title">
Events
</span>
<p>Know an event coming up? Wanna know about events coming up? Came to the right place.</p>
</div>
<div class="card-action">
<a href="#">Post <span class="glyphicon glyphicon-chevron-right"></span></a>
</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>