This repository has been archived by the owner on Jun 9, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
626 lines (605 loc) · 22.7 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
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
<!DOCTYPE HTML>
<!--
Solid State by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<title>The MonPlan Project | Home</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!--[if lte IE 8]><script src="assets/js/ie/html5shiv.js"></script><![endif]-->
<link rel="stylesheet" href="assets/css/main.css" />
<link rel="stylesheet" href="assets/css/custom.css" />
<script src="assets/js/jquery.min.js"></script>
<script src="countUp.min.js"></script>
<script>
$(document).ready(function () {
$("a").on('click', function () {
if (this.hash !== "") {
// Prevent default anchor click behavior
event.preventDefault();
// Store hash
var hash = this.hash;
// Using jQuery's animate() method to add smooth page scroll
// The optional number (800) specifies the number of milliseconds it takes to scroll to the specified area
$('html, body').animate({
scrollTop: $(hash).offset().top
}, 800, function () {
// Add hash (#) to URL when done scrolling (default click behavior)
window.location.hash = hash;
});
} // End if
});
})
</script>
<!--[if lte IE 9]><link rel="stylesheet" href="assets/css/ie9.css" /><![endif]-->
<!--[if lte IE 8]><link rel="stylesheet" href="assets/css/ie8.css" /><![endif]-->
</head>
<body style="background-repeat: no-repeat; background-size: cover; background-position: 20% 0%">
<!-- Page Wrapper -->
<div id="page-wrapper">
<div style="background-color: orange; height: 40px; display: flex; align-items: center; padding: 15px; color: #2e2e2e">
<p style="margin: 0">This site is archived. Contact ServiceDesk for any enquiries.</p>
</div>
<!-- Header -->
<header id="header" class="alt">
<h1>
<a href="index.html">MonPlan</a>
</h1>
<nav>
<a href="#menu"></a>
</nav>
</header>
<!-- Menu -->
<nav id="menu">
<div class="inner">
<h2>Browse our Site</h2>
<ul class="links">
<li>
<a href="index.html">Home</a>
</li>
<li>
<a id="introClick" href="#intro">Introduction</a>
</li>
<li>
<a href="#vision">Our Vision</a>
</li>
<li>
<a href="#team">Our Team</a>
</li>
<li>
<a href="#features">Features</a>
</li>
<li>
<a href="#footer">Get in Touch</a>
</li>
</ul>
<a href="#" class="close">Close</a>
</div>
</nav>
<!-- Banner -->
<section id="banner">
<div class="inner">
<h1 style="font-size: 2.5em; margin-bottom: 0.4em">MonPlan</h1>
<p>The Official Monash Course Planning Tool built for Students, by Students</p>
<p>Your
<b>Monash Journey</b> begins with us today.</p>
<p>
<a href="http://monplan.apps.monash.edu" rel="noreferrer noopener" class="button special">Explore my Monash Journey</a>
</p>
</div>
</section>
<!-- Wrapper -->
<section id="wrapper">
<!-- One -->
<section id="intro" class="wrapper spotlight style2">
<div class="inner">
<div class="content">
<h2 class="major">Our Story</h2>
<p>
In 2016 two friends sat down to tackle a problem. Like many students, they found the time they were taking to decode the
Monash Handbook and understand their course requirements was too much time lost from studying or, you know.... other
university-related activities. So they decided to start up a website that would simplify the course planning process.
</p>
<p>
Now, MonPlan is run by a team of Monash students. Our team consists of various students from across the Science, Engineering
and Information Technology faculties, and the project is supported by eSolutions as part of their Student First initiative.
We have had several release cycles, each time updating and improving the user experience.
</p>
<p>
The MonPlan team would love to say thanks to everyone who has given us feedback and support. You have made the Monash experience
better, for students both now and in the future.
</p>
<a href="https://monplan.apps.monash.edu" class="special">Start planning my course</a>
<a href="https://medium.com/monplan" class="special">View our Blog</a>
<a href="https://goo.gl/TEPY9n" class="special">Submit Some Feedback</a>
</div>
</div>
</section>
<section id="vision" class="wrapper alt style2">
<div class="inner">
<div class="content">
<h2 class="major">Mission Statement</h2>
<blockquote class="altBlockquote">
<p>
Our vision for MonPlan is for it to become a tool in which both new and current Monash
<u>students</u> could not only use as a tool to help them plan their course, but also help students enrol in units.
But also helping new students in picking a course, based off their future career.
</p>
</blockquote>
<h2 id="team" class="major">Our Team</h2>
<div class="box alt">
<div class="row uniform" style="font-size:0.65em">
<div class="2u">
<article>
<a class="image fit">
<img src="https://avatars1.githubusercontent.com/u/5687681?v=3&s=460" alt="" />
</a>
<h3 class="major">Eric Jiang
<br/> (lorderikir)
</h3>
<a href="https://github.com/lorderikir">
<span class="icon fa-github" /> GitHub</a>
<br/>
<a href="https://au.linkedin.com/in/ericjiang97">
<span class="icon fa-linkedin" /> LinkedIn</a>
<br/>
<span class="icon fa-map-marker"> Melbourne, Australia
<br />
<span class="icon fa-university"> BInfoTech, Monash Uni
<br />
<span class="icon fa-user"> Tech Lead & Backend Engineer</span>
</article>
</div>
<div class="2u">
<article>
<a class="image fit">
<img src="https://avatars1.githubusercontent.com/u/5346136?v=3&s=460" alt="" />
</a>
<h3 class="major">Saurabh Joshi
<br/> (auroranil)
</h3>
</article>
<a href="https://github.com/auroranil">
<span class="icon fa-github" /> GitHub</a>
<br/>
<span class="icon fa-map-marker"> Melbourne, Australia
<br />
<span class="icon fa-university"> BCompSci, Monash Uni
<br/>
<span class="icon fa-user"> Maintenance Lead, Data Integrity Lead</span>
</div>
<div class="2u">
<article>
<a class="image fit">
<img src="https://avatars1.githubusercontent.com/u/12482943?v=3&s=460" alt="" />
</a>
<h3 class="major">Josh Nelsson-Smith
<br/> (Joshua-Xavier)
</h3>
</article>
<a href="https://github.com/Joshua-Xavier">
<span class="icon fa-github" /> GitHub</span>
</a>
<br/>
<a href="https://au.linkedin.com/in/joshua-nelsson-smith-218736106">
<span class="icon fa-linkedin" /> LinkedIn</span>
</a>
<br/>
<span class="icon fa-map-marker"> Melbourne, Australia
<br />
<span class="icon fa-university"> BSE, Monash University
<br />
<span class="icon fa-user"> Co-Founder, Development Lead</span>
</div>
<div class="2u">
<article>
<a class="image fit">
<img src="https://avatars1.githubusercontent.com/u/19235373?s=460&v=4" alt="" />
</a>
<h3 class="major">Ben Yap
<br/> (bwyap)
</h3>
</article>
<a href="https://github.com/bwyap">
<span class="icon fa-github" /> GitHub</span>
</a>
<br/>
<span class="icon fa-map-marker"> Melbourne, Australia
<br />
<span class="icon fa-university"> BSoftEng
<br />
<span class="icon fa-user"> Full Stack Developer</span>
</div>
</div>
<br/>
<h3 class="major">Our Awesome Ex-Devs
</h2>
<div class="row uniform" style="font-size:0.65em">
<div class="2u">
<article>
<a class="image fit">
<img src="https://avatars0.githubusercontent.com/u/22592363?s=460&v=4" alt="" />
</a>
<h3 class="major">Katie Ng
<br/> (katiejng)
</h3>
</article>
<a href="https://github.com/katie-ng-920030125/">
<span class="icon fa-github" /> GitHub</span>
</a>
<br/>
<a href="https://au.linkedin.com/in/katiejng">
<span class="icon fa-linkedin" /> LinkedIn</span>
</a>
<br/>
<span class="icon fa-map-marker"> Melbourne, Australia
<br />
<span class="icon fa-university"> BSoftEng
<br />
<span class="icon fa-user"> Full Stack Developer</span>
</div>
<div class="2u">
<article>
<a class="image fit">
<img src="https://avatars3.githubusercontent.com/u/15629117?v=3&s=460" alt="" />
</a>
<h3 class="major">David Copley
<br/> (davidcopley)
</h3>
</article>
<a href="https://github.com/davidcopley">
<span class="icon fa-github" /> GitHub</span>
</a>
<br/>
<a>
<span class="icon fa-linkedin" /> LinkedIn (N/A)</span>
</a>
<br/>
<span class="icon fa-map-marker"> Melbourne, Australia
<br />
<span class="icon fa-university"> BSE
<br />
<span class="icon fa-user"> Frontend Developer</span>
</div>
<div class="2u">
<article>
<a class="image fit">
<img src="https://avatars0.githubusercontent.com/u/11433468?v=4&s=460" alt="" />
</a>
<h3 class="major">David Lei
<br/> (darvid7)
</h3>
</article>
<a href="https://github.com/darvid7">
<span class="icon fa-github" /> GitHub</span>
</a>
<br/>
<a href="https://au.linkedin.com/in/leidavid">
<span class="icon fa-linkedin" /> LinkedIn</span>
</a>
<br/>
<span class="icon fa-map-marker"> Melbourne, Australia
<br />
<span class="icon fa-university"> BSoftEng
<br />
<span class="icon fa-user"> Backend Developer</span>
</div>
<div class="2u">
<article>
<a class="image fit">
<img src="https://avatars1.githubusercontent.com/u/18413765?v=4&s=460" alt="" />
</a>
<h3 class="major">Callistus Tan
<br/> (callistusystan)
</h3>
</article>
<a href="https://github.com/callistusystan">
<span class="icon fa-github" /> GitHub</span>
</a>
<br/>
<a href="https://au.linkedin.com/in/callistusystan">
<span class="icon fa-linkedin" /> LinkedIn</span>
</a>
<br/>
<span class="icon fa-map-marker"> Melbourne, Australia
<br />
<span class="icon fa-university"> BSoftEng
<br />
<span class="icon fa-user"> Full Stack Developer</span>
</div>
<div class="2u">
<article>
<a class="image fit">
<img src="https://avatars1.githubusercontent.com/u/10809884?v=3&s=460" alt="" />
</a>
<h3 class="major">Robert Koch
<br/> (kochie)
</h3>
</article>
<a href="https://github.com/kochie">
<span class="icon fa-github" /> GitHub</span>
</a>
<br/>
<a href="https://au.linkedin.com/in/rkkochie">
<span class="icon fa-linkedin" /> LinkedIn</span>
</a>
<br/>
<span class="icon fa-map-marker"> Melbourne, Australia
<br />
<span class="icon fa-university"> BElecEng/BCompSci
<br />
<span class="icon fa-user"> DevOps Engineer, Backend Developer</span>
</div>
</div>
<div class="row uniform" style="font-size:0.65em">
<div class="2u">
<article>
<a class="image fit">
<img src="https://avatars1.githubusercontent.com/u/25516325?v=3&s=460" alt="" />
</a>
<h3 class="major">Charlie Campton-Strachan</h3>
</article>
<a href="https://github.com/charmonash">
<span class="icon fa-github" /> GitHub</span>
</a>
<br/>
<a href="https://www.linkedin.com/in/charles-campton-bb3751100/">
<span class="icon fa-linkedin" /> LinkedIn</span>
</a>
<br/>
<span class="icon fa-map-marker"> Melbourne, Australia
<br />
<span class="icon fa-university"> BITS, Monash University
<br />
<span class="icon fa-user"> Product Lead</span>
</div>
<div class="2u">
<article>
<a class="image fit">
<img src="https://avatars2.githubusercontent.com/u/7542378?v=3&s=460" alt="" />
</a>
<h3 class="major">Harry Ferrier
<br/>
</h3>
</article>
<a href="https://github.com/hoferrier">
<span class="icon fa-github" /> GitHub</span>
</a>
<br/>
<span class="icon fa-map-marker"> Melbourne, Australia
<br />
<span class="icon fa-user"> UX Designer, Frontend Developer</span>
</div>
<div class="2u">
<article>
<a class="image fit">
<img src="https://avatars2.githubusercontent.com/u/26531118?s=460&v=4" alt="" />
</a>
<h3 class="major">Nicholas Whittaker
<br/> (nchlswhttkr)
</h3>
</article>
<a href="https://github.com/nickeloz">
<span class="icon fa-github" /> GitHub</span>
</a>
<br/>
<a href="https://au.linkedin.com/in/nchlswhttkr">
<span class="icon fa-linkedin" /> LinkedIn</span>
</a>
<br/>
<span class="icon fa-map-marker"> Melbourne, Australia
<br />
<span class="icon fa-university"> BCompSci
<br />
<span class="icon fa-user"> UX Lead, Frontend Developer</span>
</div>
<div class="2u">
<article>
<a class="image fit">
<img src="https://avatars3.githubusercontent.com/u/19886590?s=460&v=4" alt="" />
</a>
<h3 class="major"> Isabel Sprengers
<br/> (IsabelSprengers)
</h3>
</article>
<a href="https://github.com/IsabelSprengers">
<span class="icon fa-github" /> GitHub</span>
</a>
<br/>
<span class="icon fa-map-marker"> Melbourne, Australia
<br />
<span class="icon fa-user"> Full Stack Developer</span>
</div>
<div class="2u">
<article>
<a class="image fit">
<img src="https://cdn3.iconfinder.com/data/icons/seo-concept-modern/512/Editor_services_flat_icon_seo_pack_web-512.png" alt=""
/>
</a>
<h3 class="major"> Hyun Shim
</h3>
</article>
<br/>
<span class="icon fa-map-marker"> Melbourne, Australia
<br />
<span class="icon fa-user"> Full Stack Developer</span>
</div>
</div>
<div class="row uniform" style="font-size:0.65em">
<div class="2u">
<article>
<a class="image fit">
<img src="https://cdn3.iconfinder.com/data/icons/seo-concept-modern/512/Editor_services_flat_icon_seo_pack_web-512.png" alt=""
/>
</a>
<h3 class="major"> Mansi Vyas
</h3>
</article>
<br/>
<span class="icon fa-map-marker"> Melbourne, Australia
<br />
<span class="icon fa-user"> Full Stack Developer</span>
</div>
<div class="2u">
<article>
<a class="image fit">
<img src="https://avatars0.githubusercontent.com/u/9690695?s=460&v=4" alt="" />
</a>
<h3 class="major">Rebecca Young
<br/> (RJYoung27)
</h3>
</article>
<a href="https://github.com/RJYoung27">
<span class="icon fa-github" /> GitHub</span>
</a>
<br/>
<span class="icon fa-map-marker"> Melbourne, Australia
<br />
<span class="icon fa-user"> Full Stack Developer</span>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="users" class="wrapper spotlight style1">
<div class="inner">
<div class="content">
<h2>What our users thought</h2>
<blockquote class="normBlockquote">
Really really really good app! Has saved me heaps of time course planning.
</blockquote>
<blockquote class="altBlockquote">
MonPlan is so much nicer to use now. Last time I gave up making my course plan after 3 semesters and thought it was easier
to do in Excel. Now it's pretty gosh darn good - did my whole course in like two minutes. Would use it instead of
Excel and that's like the highest of all honours
</blockquote>
<blockquote class="normBlockquote">
Great new improvements with being able to load unit information and upload course maps!
</blockquote>
<blockquote class="altBlockquote">
I really like the user interface you've created. It's beautiful! Looks awesome, isn't oversaturated with information and
is easy to use
</blockquote>
<blockquote class="normBlockquote">
This is a great site, I wish I'd had it when I was first an undergrad!
</blockquote>
<blockquote class="altBlockquote">
I loved that you guys are working on this. A team I was in showcased something like this mid-year 2016, but we didn't have
the technical know-how to make it. Please make it awesome! :)
</blockquote>
</div>
</div>
</section>
<!-- Four -->
<section id="features" class="wrapper alt style1">
<div class="inner">
<h2 class="major">Features</h2>
<p>
Here's some quick features about our web app!
</p>
<section class="features">
<article>
<a class="image">
<img src="images/features/summary.PNG" alt="" />
</a>
<h3 class="major">View Unit Info</h3>
<p>
View information about your unit, including the description, when and where the unit will be held, Prereqs, Coreqs, how many
credit points and how much the unit costs (based on 2017 costs and for Domestic CSP students). As well as SETU ratings
for that unit.
</p>
</article>
<article>
<a class="image fit">
<img src="images/features/validation.png" alt="" />
</a>
<h3 class="major">Validation</h3>
<p>
We have improved our validation, bringing smarter and clearer indication of where you may face problems from Course Advisors.
</p>
</article>
<article>
<a class="image">
<img src="images/features/printShareSave.PNG" alt="" />
</a>
<h3 class="major">Print, Share or Save your Course.</h3>
<p>You can share and save your course as a link, otherwise you can also print it off and take it to a course advisor,
easy right?.</p>
</article>
<article>
<a class="image">
<img src="images/features/custom.png" alt="" />
</a>
<h3 class="major">Custom Units</h3>
<p>We don't necessary have all the information about units that were done perviously, but we place faith in you in making
your own unit. We believe that nothing will go wrong......
</p>
</article>
<article>
<a class="image">
<img src="images/features/loadcourse.gif" alt="" />
</a>
<h3 class="major">Load A Course Map</h3>
<p>You can start off with by loading a course or with the old way, picking your start and end years</p>
</article>
<article>
<a class="image">
<img src="images/features/courseinfo.PNG" alt="" />
</a>
<h3 class="major">View Course Information</h3>
<p>You can view information about your course such as Course Duration, required Credit points, etc.</p>
</article>
</section>
</div>
</section>
</section>
<!-- Footer -->
<section id="footer">
<div class="inner">
<h2 class="major">Get in touch</h2>
<p>
There are many ways to contact us or submitting feedback, such as visiting our Google Form, or contacting us directly
</p>
<ul class="contact">
<li class="contactIcon fa-home">
MonPlan
<br /> Student First Team,
<br /> eSolutions, Monash University
</li>
<li class="contactIcon fa-github">
<a href="https://github.com/monplan">github.com/monplan</a>
</li>
<li class="contactIcon fa-facebook">
<a href="https://facebook.com/monplan">facebook.com/monplan</a>
</li>
<li class="contactIcon fa-twitter">
<a href="https://twitter.com/MonPlan_Monash">twitter.com/MonPlan_Monash</a>
</li>
<li class="contactIcon fa-comments-o">
<a href="https://docs.google.com/a/monash.edu/forms/d/e/1FAIpQLSf5Y65r7_9bAZbRysI2JYYcRAKNFgVck9XIIt67TfNwx26FqQ/viewform">
Submit Feedback via Google Forms
</a>
</li>
</ul>
<ul class="copyright">
<li>Copyright © Monash University 2019.</li>
<li>Design:
<a href="http://html5up.net">HTML5 UP</a>, Modified by
<a href="https://github.com/monplan">various members of the MonPlan team</a>
</li>
</ul>
</div>
</section>
</div>
<!-- Scripts -->
<script src="assets/js/skel.min.js"></script>
<script src="assets/js/jquery.scrollex.min.js"></script>
<script src="assets/js/util.js"></script>
<!--[if lte IE 8]><script src="assets/js/ie/respond.min.js"></script><![endif]-->
<script src="assets/js/main.js"></script>
</body>
</html>