-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
518 lines (487 loc) · 21.8 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
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
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Student | Dashboard</title>
<!-- Normalize browser inconsistencies -->
<link rel="stylesheet" href="./css/normalize.css">
<!-- Bootstrap -->
<link rel="stylesheet" href="./css/bootstrap.min.css">
<!-- Font Awesome -->
<script defer src="./js/fontawesome-all.min.js"></script>
<!-- MD Bootstrap -->
<link rel="stylesheet" href="./css/mdb.min.css">
<!-- Custom stylesheet -->
<link rel="stylesheet" href="./css/styles.css">
<style>
/* Scrollbar styling */
body::-webkit-scrollbar {
width: 9px;
}
body::-webkit-scrollbar-thumb {
border-radius: 10px;
background-color: rgba(29, 17, 17, 0.788);
}
body::-webkit-scrollbar-track {
background-color: rgb(230, 223, 223);
border-radius: 10px;
}
/* Profile Modal */
.card.profile-card {
width: 100%;
margin: 0;
}
#profileModal .modal-content,
#profileModal .modal-content .modal-body,
#profileModal .modal-content .modal-body .card.profile-card {
border-radius: 10px;
}
#profileModal .modal-content .modal-body .card.profile-card img {
border-radius: 10px 10px 0 0;
}
</style>
</head>
<body>
<!-- Wrapper stretches to the whole viewport height -->
<div class="wrapper">
<!-- Sidebar -->
<nav id="sidebar" class="navbar sticky-top">
<div class="navbar-header">
<img src="./img/drake-ramoray.jpg" class="rounded-circle" alt="Profile picture">
<h5 class="navbar-brand m-1 text-white pl-2">Dr. Drake Ramoray</h5>
</div>
<!-- Navbar links -->
<ul class="navbar-nav">
<li class="nav-item active">
<a href="./index.html" class="nav-link btn btn-block btn-lg">
<i class="fas fa-newspaper fa-lg mr-1"></i>
<span>Feed</span>
<span class="badge red d-flex align-items-center justify-content-center">New</span>
</a>
</li>
<li class="nav-item btn-group">
<a href="#" class="nav-link btn btn-block btn-lg dropdown-toggle" role="button" data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
<i class="fas fa-graduation-cap fa-lg mr-1"></i>
<span>Grades</span>
</a>
<ul id="marks" class="dropdown dropdown-menu">
<li>
<a href="./grades-sem-1.html" class="nav-link dropdown-item">Semester 1</a>
</li>
<li>
<a href="./grades-sem-2.html" class="nav-link dropdown-item">Semester 2</a>
</li>
<li>
<a href="./grades-sem-3.html" class="nav-link dropdown-item">Semester 3</a>
</li>
<li>
<a href="./grades-sem-4.html" class="nav-link dropdown-item">Semester 4</a>
</li>
</ul>
</li>
<li class="nav-item">
<a href="./resources.html" class="nav-link btn btn-block btn-lg">
<i class="fas fa-file-alt fa-lg mr-1"></i>
<span>Resources</span>
<span class="badge badge-pill green d-flex align-items-center justify-content-center">14</span>
</a>
</li>
<li class="nav-item">
<a href="./attendance.html" class="nav-link btn btn-block btn-lg">
<i class="far fa-user-circle fa-lg mr-1"></i>
<span>Attendance</span>
</a>
</li>
</ul>
</nav>
<!-- Main -->
<main>
<!-- Topbar -->
<nav id="topbar" class="navbar navbar-expand-md sticky-top">
<!-- sidebar toggle button -->
<button id="topbar-toggler" class="navbar-toggler" type="button" data-toggle="collapse">
<span class="fas fa-align-left"></span>
</button>
<!-- topbar items toggle button -->
<button class="navbar-toggler collapsed" type="button" data-toggle="collapse" data-target="#topbar-items">
<span class="fas fa-ellipsis-v"></span>
</button>
<!-- topbar items -->
<div class="navbar-collapse collapse" id="topbar-items">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link waves-effect waves-light" href="#">
<i class="fa fa-envelope"></i>
<span>Contact</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link waves-effect waves-light" href="#">
<i class="fas fa-credit-card"></i>
<span>Gate Pass</span>
</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link waves-effect waves-light dropdown-toggle" id="dropdown-items" data-toggle="dropdown">
<img src="img/drake-ramoray.jpg" class="rounded-circle" alt="profile picture">
</a>
<div class="dropdown-menu dropdown-menu-right dropdown-menu-secondary">
<a class="dropdown-item waves-effect waves-light" href="#">Profile</a>
<a class="dropdown-item waves-effect waves-light" href="#">Feedback</a>
<a class="dropdown-item waves-effect waves-light" href="#">Log Out</a>
</div>
</li>
</ul>
</div>
</nav>
<!-- Content -->
<div class="content">
<!-- First card -->
<article class="card card-cascade wider reverse my-4">
<section class="card-header">
<img src="./img/teachers/snoop-dogg.png" class="rounded-circle" alt="Profile picture">
<h4 class="card-title m-2">Snoop Dogg</h4>
</section>
<section class="view overlay">
<img src="./img/card-img/art-of-living.jpg" alt="Trees" class="img-fluid">
<a href="#">
<div class="mask rgba-white-slight"></div>
</a>
</section>
<section class="card-body text-center">
<h6 class="indigo-text darken-4">
<i class="fas fa-book"></i>
Resource
</h6>
<h4 class="card-title">Assignment uploaded</h4>
<p class="card-text">
Snoop Dogg has uploaded the assignment for the
<span class="pink-text">Art of Living amongst trees.</span>
</p>
<button class="btn btn-outline-indigo darken-4">View assignment</button>
</section>
</article>
<!-- Second card -->
<article class="card">
<section class="card-header">
<img src="./img/teachers/alexandra.jpeg" class="rounded-circle" alt="Profile picture">
<h4 class="card-title m-2">Alexandra Daddario</h4>
</section>
<section class="card-body">
<h6 class="light-green-text accent-3">
<i class="far fa-bell"></i>
Update
</h6>
<h4 class="card-title">Teacher change</h4>
<p class="card-text">
Mr. Zac Efron has left the university. Hence,
<span class="purple-text">Miss Alexandra Daddario</span> will be taking his place and teaching
<span class="purple-text">biology</span> this semester.
</p>
</section>
<section class="card-footer text-right">
<button class="btn btn-light-green accent-3" data-toggle="modal" data-target="#profileModal">View profile</button>
</section>
</article>
<!-- Alexandra Daddario profile modal -->
<article class="modal fade bottom" id="profileModal" tabindex="-1" aria-hidden="true">
<section class="modal-dialog">
<section class="modal-content">
<section class="modal-body p-0">
<section class="card profile-card">
<section class="view overlay">
<img class="img-fluid" src="./img/teachers/alexandra-modal.jpg" alt="Profile picture of Alexandra Daddario">
<a>
<div class="mark rgba-white-slight"></div>
</a>
</section>
<section class="card-body pb-0">
<a href="https://www.facebook.com/alexandra.daddario.5439/" class="activator black-text p-3 mr-2 mt-1">
<i class="fab fa-facebook-square fa-lg"></i>
</a>
<h4 class="card-title">Alexandra Daddario</h4>
<hr>
<p class="card-text">
<em>I Instagram and tweet a lot about my dog.</em>
</p>
<p class="card-text">Alexandra is the newest PhD. teacher to join our university. She specializes in Biology and Life Rescue
operations.
</p>
<h5 class="card-title dark-grey-text">Her qualifications:</h5>
<ul class="list-group mb-3">
<li class="list-group-item p-2">PhD. in Biology</li>
<li class="list-group-item p-2">Double PhD. in Life Rescue Operations</li>
<li class="list-group-item p-2">Graduate in Hypnotism</li>
</ul>
<a href="https://en.wikipedia.org/wiki/Alexandra_Daddario" class="link-text black-text">
<h5>Read more
<i class="fa fa-chevron-right"></i>
</h5>
</a>
</section>
</section>
</section>
<section class="modal-footer d-flex justify-content-center align-items-center">
<button class="btn btn-outline-elegant btn-rounded my-0" data-dismiss="modal">Close</button>
</section>
</section>
</section>
</article>
<!-- Explore image -->
<article class="card card-cascade wider reverse my-4">
<!-- Card image -->
<section class="view overlay">
<img src="./img/card-img/explore.jpg" class="img-fluid" alt="Explore Fest poster">
<a href="#">
<div class="mask rgba-white-slight"></div>
</a>
</section>
<!-- Card body -->
<section class="card-body text-center">
<h5 class="pink-text">
<i class="fas fa-chess-queen"></i>
Event
</h5>
<h4 class="card-title">Come and EXPLORE!</h4>
<p class="card-text">
<span class="red-text">Chitkara University</span> proudly presents
<span class="red-text">EXPLORE 2k18!</span> Come, be a part of this exuberant event. Show off your skills - be they singing, dancing,
theatre, comedy, drama, poetry or art & craft!
</p>
<a class="btn btn-unique">Sign Up</a>
</section>
</article>
<!-- Third card -->
<article class="card">
<section class="card-header">
<img src="./img/teachers/brad-pitt.jpeg" class="rounded-circle" alt="Profile picture">
<h4 class="card-title m-2">Brad Pitt</h4>
</section>
<section class="card-body">
<h6 class="purple-text darken-4">
<i class="fas fa-users"></i>
Activities
</h6>
<h4 class="cart-title">'We Hate Rachel Green'</h4>
<p class="card-text">
<span class="teal-text">Mr. Brad Pitt</span> has now taken over the
<span class="teal-text">We Hate Rachel Green</span> club and is now its President.
</p>
</section>
<section class="view overlay">
<figure class="figure">
<img src="./img/card-img/we-hate-rachel-green.jpg" class="figure-img img-fluid" alt="Brad Pitt at a club meet">
<figcaption class="figure-caption ml-3">
<em>Mr. Pitt at one of the club meetings.</em>
</figcaption>
</figure>
<a href="#">
<div class="mask rgba-white-slight"></div>
</a>
</section>
<section class="card-body">
<h5 class="text-uppercase">Prerequisites:</h5>
<ul>
<li>Must hate Rachel Green</li>
<li>Must know how to pivot</li>
<li>Must be divorced thrice</li>
</ul>
</section>
<section class="card-footer text-right">
<button class="btn btn-outline-deep-purple btn-rounded">Join club</button>
</section>
</article>
<!-- Fourth card -->
<article class="card">
<section class="card-header">
<img src="./img/teachers/wiz-khalifa.jpeg" class="rounded-circle" alt="Profile picture">
<h4 class="card-title m-2">Wiz Khalifa</h4>
</section>
<section class="view overlay">
<figure class="figure">
<img src="./img/card-img/explore-hub.jpg" class="figure-img img-fluid" alt="An image of Explore Hub">
<figcaption class="figure-caption text-right mr-4">
<em>Explore Hub - the place where all ideas come together.</em>
</figcaption>
</figure>
<a href="#">
<div class="mask rgba-white-slight"></div>
</a>
</section>
<section class="card-body">
<h6 class="cyan-text accent-2">
<i class="fas fa-flask"></i>
Research
</h6>
<h4 class="card-title">Bio Patent</h4>
<p class="card-text">
<span class="purple-text">Mr. Wiz Khalifa</span>, along with his team of curious students have filed their
<span class="purple-text">357th</span>(😮) patent this semester - this time in the field of biotechnology! Check out the details of how
they made us proud by clicking the button below!
</p>
</section>
<section class="card-footer">
<button class="btn blue-gradient btn-rounded">Checkout patent</button>
</section>
</article>
<!-- Fifth card -->
<article class="card">
<section class="card-header">
<img src="./img/teachers/emma-stone.jpeg" class="rounded-circle" alt="Profile picture">
<h4 class="card-title m-2">Emma Stone</h4>
</section>
<section class="card-body">
<h6 class="deep-orange-text">
<i class="fas fa-trophy"></i>
Laurels
</h6>
<h4 class="card-title">Award Win</h4>
<p class="card-text">
One of the youngest members of our Computer Science faculty -
<span class="indigo-text">Miss Emma Stone</span> has won an award for her work in the field of Image Recognition and Pattern detection.
Check out her award win below!
</p>
</section>
<section class="view overlay">
<figure class="figure">
<img src="./img/card-img/emma-award.jpg" class="figure-img img-fluid" alt="Emma Stone giving a speech after an award win">
<figcaption class="figure-caption text-right mr-4">
<em>Emma Stone giving her acceptance speech after her award win.</em>
</figcaption>
</figure>
<a href="#">
<div class="mask rgba-white-slight"></div>
</a>
</section>
<section class="card-footer text-right">
<button class="btn btn-outline-deep-orange" data-toggle="modal" data-target="#emmaModal">Watch video</button>
</section>
</article>
<!-- Emma Stone Award Modal -->
<article class="modal fade" id="emmaModal" tab-index="-1" aria-hidden="true">
<section class="modal-dialog modal-lg">
<section class="modal-content">
<!-- Modal Head -->
<section class="modal-header d-flex align-items-center px-4">
<h4 class="modal-title dark-grey-text">Emma's Acceptance Speech</h4>
<button class="close" data-dismiss="modal">×</button>
</section>
<!-- Modal Body -->
<section class="modal-body mb-0 p-0">
<div class="embed-responsive embed-responsive-16by9 z-depth-1-half">
<iframe class="embed-responsive-item" src="https://www.youtube.com/embed/aSOB8exSxGE" allowfullscreen></iframe>
</div>
</section>
<!-- Modal Footer -->
<section class="modal-footer d-flex justify-content-between align-items-center">
<button class="btn btn-outline-purple btn-rounded" data-dismiss="modal">Close</button>
<div class="pt-3 d-flex flex-column justify-content-end align-items-end">
<p class="mb-0">
<em>I'm not very computer savvy!</em>
</p>
<p class="mt-0">
<strong>-Emma Stone</strong>
</p>
</div>
</section>
</section>
</section>
</article>
<!-- Hackathon card -->
<article class="card card-cascade wider reverse my-4">
<!-- Card image -->
<section class="view overlay">
<img src="./img/card-img/octahacks.jpg" class="img-fluid" alt="Octahacks poster">
<a href="https://www.octahacks.tech/" target="_blank">
<div class="mask rgba-white-slight"></div>
</a>
</section>
<!-- Card body -->
<section class="card-body text-center">
<h6 class="pink-text darken-4">
<i class="fas fa-chess-queen"></i>
Event
</h6>
<h4 class="card-title">Eat. Sleep. Code. Repeat.</h4>
<p class="card-text">
Where do savvy developers, hackers, tech builders and makers go to test their mettle and push the very limits of their creativity
and endurance? To a Hackathon! where else?
</p>
<p class="card-text">
We're psyched to announce that the
<span class="red-text">Developer Student Club, Chitkara University</span> presents
<span class="red-text">Octahacks</span> on April 14-15 at Chitkara University. Come be a part of it! Register below.
</p>
<button class="btn btn-outline-unique">Register</button>
</section>
</article>
<!-- Sixth card -->
<article class="card">
<section class="card-header">
<img src="./img/teachers/lalu.jpeg" class="rounded-circle" alt="Profile picture">
<h4 class="card-title m-2">Lalu Prasad Yadav</h4>
</section>
<section class="view overlay">
<figure class="figure">
<img src="./img/card-img/lalu-debate.jpg" class="figure-img img-fluid" alt="Lalu sir debating on the capabilities of machine learning">
<figcaption class="figure-caption ml-3">
<em>Mr. Lalu talks passionately about the capabilities of machine learning.</em>
</figcaption>
</figure>
<a href="#">
<div class="mask rgba-white-slight"></div>
</a>
</section>
<section class="card-body">
<h6 class="purple-text darken-4">
<i class="fas fa-users"></i>
Activities
</h6>
<h4 class="card-title">Debate on ML</h4>
<p class="card-text">
Mr. Lalu Prasad Yadav recently organized a debate on the
<span class="red-text">capabilities of Machine Learning and Artificial Intelligence</span>. Over 50 students participated and presented
their ideas and opinions about this relatively new technology. Watch the full video below.
</p>
</section>
<section class="card-footer text-right">
<!-- Triggers the modal -->
<button class="btn btn-deep-purple" data-toggle="modal" data-target="#modalNorway">Watch video</button>
</section>
</article>
<!-- Modal for video -->
<article class="modal fade" id="modalNorway" tabindex="-1" aria-hidden="true">
<section class="modal-dialog modal-lg">
<section class="modal-content">
<!-- Body -->
<section class="modal-body mb-0 p-0">
<div class="embed-responsive embed-responsive-16by9 z-depth-1-half">
<iframe class="embed-responsive-item" src="https://www.youtube.com/embed/YJPgoOCOBFg" allowfullscreen></iframe>
</div>
</section>
<!-- Footer -->
<section class="modal-footer justify-content-center flex-column flex-md-row">
<span class="mr-4">JK. Lalu sir is too cool for that. Look at those mountains though!</span>
<button class="btn btn-outline-primary btn-rounded btn-md ml-4" data-dismiss="modal">Close</button>
</section>
</section>
</section>
</article>
</div>
</main>
</div>
<!-- Bootstrap dependencies -->
<!-- First jQuery, then Popper.js and lastly Bootstrap JS -->
<script src="js/jquery-3.3.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"></script>
<script src="js/mdb.min.js"></script>
<!-- Custom script -->
<script src="./js/scripts.js"></script>
</body>
</html>