-
Notifications
You must be signed in to change notification settings - Fork 0
/
discover.html
387 lines (356 loc) · 13.8 KB
/
discover.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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
<!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">
<title>Discover People | IWORDER</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="font-awesome/css/fontawesome-all.min.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<!-- The top Nav Bar -->
<!-- This is the navbar that is displayed when the user is not logged in -->
<!-- Check the index2.html file -->
<nav class="main-nav visible-xs">
<div class="container">
<div class="row">
<div class="nav-logo col-md-4 col-sm-3 col-xs-1"">
<a href="home.html" class="logo">
<img src="img/logob.jpg" alt="iWorder logo">
</a>
</div>
<div class="nav-form col-md-4 col-sm-5 col-xs-6">
<form action="" method="">
<input type="text" placeholder="Search">
<button type="submit"><i class="fas fa-search"></i></button>
</form>
</div>
<div class="nav-links col-md-4 col-sm-4 col-xs-5">
<ul>
<li>
<a href="profile.html">
<img src="svg/coins.svg" alt="Points">
304
</a>
</li>
<li>
<a href="notification.html">
<img src="svg/bell.svg" alt="Notifications">
<span class="badge">200</span>
</a>
</li>
</ul>
</div>
</div>
</div>
</nav>
<!-- The Second Navigation -->
<section id="mobile-nav" class="second-nav visible-xs">
<div class="container">
<div class="row profile">
<div class="col-md-12 col-sm-12 col-xs-12">
<a href="profile.html">
<img src="img/portrait1.jpg" class="img-responsive img-circle" alt="Profile Picture">
<span>Conversation</span>
</a>
<a class="create-post" href="create-post.html">
<i class="fas fa-pencil-alt"></i>
</a>
</div>
</div>
<div id="mobile-nav-main" class="row text-center">
<div class="col-md-3 col-sm-3 col-xs-3">
<a href="home.html" class="active">
<img src="svg/home.svg" style="display: inline;margin: 0px;width: 25px;height: 25px;" alt="">
</a>
</div>
<div class="col-md-3 col-sm-3 col-xs-3">
<a href="hub.html" class="">
<i class="fas fa-users fa-2x" style="font-size: 28px;"></i>
</a>
</div>
<div class="col-md-3 col-sm-3 col-xs-3">
<a href="nursery.html">
<img src="svg/nursery.svg" style="display: inline;margin: 0px;width: 25px;height: 25px;" alt="">
</a>
</div>
<div class="col-md-3 col-sm-3 col-xs-3">
<a href="conversations.html">
<img src="svg/envelope.svg" style="display: inline;margin: 0px;width: 25px;height: 25px;" alt="">
</a>
</div>
</div>
</div>
</section>
<!-- Desktop Navigation -->
<!-- The main Navigation for the desktop -->
<!-- This is the on only Nav that showas n desktops -->
<nav class="navbar navbar-default visible-sm visible-md visible-lg navbar-fixed-top">
<div class="container">
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav icon-link">
<li>
<a href="home.html" class="active">
<img src="svg/home.svg" alt="" style="">
</a>
</li>
<li>
<a href="hub.html">
<i class="fas fa-users" style="font-size: 28px;"></i>
</a>
</li>
<li>
<a href="nursery.html">
<img src="svg/nursery.svg" alt="">
</a>
</li>
<li>
<a href="conversations.html">
<img src="svg/envelope.svg" alt="">
</a>
</li>
</ul>
<form class="navbar-form navbar-left" action="/search" method="GET">
<div class="input-group">
<input type="text" placeholder="Search...">
<button type="submit"><i class="fas fa-search"></i></button>
</div>
</form>
<ul class="nav navbar-nav navbar-right">
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">
<img src="img/portrait1.jpg" class="img-circle" alt="Profile Picture">
Jane Iworder<span class="glyphicon glyphicon-menu-down" style="margin-left: 3px;"></span>
</a>
<ul class="dropdown-menu">
<li><a href="profile.html">Profile <i class="fas fa-user pull-right"></i></a></li>
<li><a href="search-user.html">Followers <i class="fas fa-users pull-right"></i></a></li>
<li><a href="hub.html">Posts <i class="fas fa-newspaper pull-right"></i></a></li>
<li><a href="notification.html">Notifications <i class="fas fa-bell pull-right"></i></a></li>
<li><a href="rainshrine.html">RainShrine <i class="fab fa-hubspot pull-right"></i></a></li>
<li><a href="onyxes.html">Onyxes <img src="svg/coins.svg" alt="" style="width: 15px;margin-top: -5px;" class="img-responsive pull-right"> </a></li>
<li role="separator" class="divider"></li>
<li><a href="login.html">Log Out <i class="fas fa-sign-out-alt pull-right"></i></a></li>
</ul>
</li>
<li class="create">
<a href="create-post.html">
Create Article
</a>
</li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
<!-- End of nav -->
<section id="conversations" class="search_page">
<div class="container">
<div class="row pad">
<div class="conv col-md-7 col-md-offset-1 col-sm-8 col-sm-offset-2 col-xs-12 col-xs-offset-0">
<form class="navbar-form navbar-left" action="/search" method="GET">
<div class="input-group">
<button type="submit" style="border: 0px none;"><i class="fas fa-search"></i></button>
<input type="text" placeholder="Search..." style="border: 0px none;min-width: ">
</div>
<ul class="nav nav-tabs" role="tablist">
<li role="presentation" class="active"><a href="#people" aria-controls="people" role="tab" data-toggle="tab" style="color: #555;">Discover People</a></li>
<li role="presentation"><a href="#rainmakers" aria-controls="rainmakers" role="tab" data-toggle="tab" style="color: #555;">Rain Maker</a></li>
</ul>
</form>
<div class="clearfix"></div>
<div class="tab-content" id="users">
<div role="tabpanel" class="tab-pane fade in active" id="people">
<div class="discover" style="padding: 15px 0px;border-bottom: 2px solid #ddd;">
<p class="no-result">You have no follower</p>
</div>
<div class="user">
<div class="image">
<a href="profile.html"><img src="img/portrait1.jpg" alt="" class="img-responsive img-circle"></a>
</div>
<div class="name">
<p style="font-weight: bold;font-size: 15px;"><a href="profile.html" style="color: #333;">Jane Iworder</a></p>
<p class="">@janyworder</p>
<p class="">215 Followers</p>
</div>
<div class="follow">
<button class="btn btn-discover btn-sm" type="button">
<i class="fas fa-plus"></i> Follow
</button>
</div>
</div>
<div class="user">
<div class="image">
<a href="profile.html"><img src="img/portrait1.jpg" alt="" class="img-responsive img-circle"></a>
</div>
<div class="name">
<p style="font-weight: bold;font-size: 15px;"><a href="profile.html" style="color: #333;">Jane Iworder</a></p>
<p class="">@janyworder</p>
<p class="">215 Followers</p>
</div>
<div class="follow">
<button class="btn btn-discover btn-sm" type="button">
<i class="fas fa-check"></i> Following
</button>
</div>
</div>
</div>
<div role="tabpanel" class="tab-pane fade" id="rainmakers">
<div class="discover" style="padding: 15px 0px;border-bottom: 2px solid #ddd;">
<p class="no-result">Discover and follow awesome people</p>
</div>
<div class="user">
<div class="image">
<a href="profile.html"><img src="img/portrait1.jpg" alt="" class="img-responsive img-circle"></a>
</div>
<div class="name">
<p style="font-weight: bold;font-size: 15px;"><a href="profile.html" style="color: #333;">Jane Iworder</a></p>
<p class="">@janyworder</p>
<p class="">215 Followers</p>
</div>
<div class="follow">
<button class="btn btn-discover btn-sm" type="button">
<i class="fas fa-plus"></i> Follow
</button>
</div>
</div>
<div class="user">
<div class="image">
<a href="profile.html"><img src="img/portrait1.jpg" alt="" class="img-responsive img-circle"></a>
</div>
<div class="name">
<p style="font-weight: bold;font-size: 15px;"><a href="profile.html" style="color: #333;">Jane Iworder</a></p>
<p class="">@janyworder</p>
<p class="">215 Followers</p>
</div>
<div class="follow">
<button class="btn btn-discover btn-sm" type="button">
<i class="fas fa-check"></i> Following
</button>
</div>
</div>
</div>
</div>
</div><!-- end of conv -->
<aside id="sidebar" class="col-md-4 visible-md visible-lg">
<div class="cont">
<div class="row recommended">
<h3 class="title">Discover</h3>
<div class="discover">
<div class="image">
<a href="profile.html"><img src="img/portrait1.jpg" alt="" class="img-responsive img-circle"></a>
</div>
<div class="name">
<p class="user"><a href="profile.html" style="color: #333;">Jane Iworder</a></p>
<p class="">@janyworder</p>
<p class="">215 Followers</p>
</div>
<div class="follow">
<button class="btn btn-discover btn-sm" type="button">
<i class="fas fa-plus"></i> Follow
</button>
</div>
</div>
<div class="discover">
<div class="image">
<a href="profile.html"><img src="img/portrait1.jpg" alt="" class="img-responsive img-circle"></a>
</div>
<div class="name">
<p class="user"><a href="profile.html" style="color: #333;">Jane Iworder</a></p>
<p class="">@janyworder</p>
<p class="">215 Followers</p>
</div>
<div class="follow">
<button class="btn btn-discover btn-sm" type="button">
<i class="fas fa-plus"></i> Follow
</button>
</div>
</div>
<div class="discover">
<div class="image">
<a href="profile.html"><img src="img/portrait1.jpg" alt="" class="img-responsive img-circle"></a>
</div>
<div class="name">
<p class="user"><a href="profile.html" style="color: #333;">Jane Iworder</a></p>
<p class="">@janyworder</p>
<p class="">215 Followers</p>
</div>
<div class="follow">
<button class="btn btn-discover btn-sm" type="button">
<i class="fas fa-plus"></i> Follow
</button>
</div>
</div>
</div><!-- End of Recommended -->
<p class="seperator">
<a href="users.html">Show more</a>
</p>
</div>
</aside>
</div>
</div>
</section>
<footer id="main">
<div class="container">
<div class="row text-center">
<div class="col-md-12 col-sm-12 col-xs-12">
<p class="user visible-sm visible-md visible-lg">
<a href="home.html">Home</a>
<i class="fas fa-circle"></i>
<a href="#">About</a>
<i class="fas fa-circle"></i>
<a href="search-post.html">Categories</a>
<i class="fas fa-circle"></i>
<a href="team.html">Team</a>
<i class="fas fa-circle"></i>
<a href="support.html">Support</a>
<i class="fas fa-circle"></i>
<a href="faq.html">FAQs</a>
<i class="fas fa-circle"></i>
<a href="facilitator.html">Facilitators</a>
<i class="fas fa-circle"></i>
<a href="t_and_c.html">Terms and Conditions</a>
<i class="fas fa-circle"></i>
<a href="profile.html">Jane Iworder</a>
<i class="fas fa-circle"></i>
<a href="login.html">Logout</a>
</p>
<p class="user visible-xs text-left">
<div class="col-xs-6 visible-xs text-left">
<a href="home.html">Home</a>
<br>
<a href="#">About</a>
<br>
<a href="search-post.html">Categories</a>
<br>
<a href="team.html">Team</a>
<br>
<a href="support.html">Support</a>
</div>
<div class="col-xs-6 visible-xs text-left ">
<a href="faq.html">FAQs</a>
<br>
<a href="facilitator.html">Facilitators</a>
<br>
<a href="t_and_c.html">Terms and Conditions</a>
<br>
<a href="profile.html">Jane Iworder</a>
<br>
<a href="login.html">Logout</a>
</div>
</p>
<div class="clearfix"></div>
<p class="copyright">
<a href="home.html">
<i class="far fa-copyright"></i> iWorder</a> 2018
</p>
</div>
</div>
</div>
</footer>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/bootstrap.js"></script>
<script type="text/javascript" src="js/script.js"></script>
</body>
</html>