-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
385 lines (296 loc) · 15.3 KB
/
index.html
File metadata and controls
385 lines (296 loc) · 15.3 KB
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
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<!--- basic page needs
================================================== -->
<meta charset="utf-8">
<title>UofT Dev</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- mobile specific metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- CSS
================================================== -->
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/vendor.css">
<link rel="stylesheet" href="css/main.css">
<!-- script
================================================== -->
<script src="js/modernizr.js"></script>
<script src="js/pace.min.js"></script>
<!-- favicons
================================================== -->
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<meta name="google-site-verification" content="6OR0sSi7cRD6WlRxrliCBRswPoX4xlGcXGE3umq8psY" />
</head>
<body id="top">
<!-- header
================================================== -->
<header class="s-header">
<div class="header-logo">
<a class="site-logo" href="index.html">
<img src="images/logo.svg" alt="Homepage">
</a>
</div> <!-- end header-logo -->
<nav class="header-nav">
<a href="#0" class="header-nav__close" title="close"><span>Close</span></a>
<div class="header-nav__content">
<h3>UofT Dev</h3>
<ul class="header-nav__list">
<li class="current"><a class="smoothscroll" href="#home" title="home">Home</a></li>
<li><a class="smoothscroll" href="#about" title="about">About</a></li>
<li><a class="smoothscroll" href="#services" title="services">Mission</a></li>
<li><a class="smoothscroll" href="#works" title="works">Works</a></li>
<li><a class="smoothscroll" href="#contact" title="contact">Contact</a></li>
</ul>
<p>We specialize in open source projects, written for the UofT Community, by the UofT Community.</p>
<!-- Links -->
<ul class="header-nav__social">
<li>
<a href="https://github.com/uoft-dev"><i class="fab fa-github"></i></a>
</li>
<li>
<a href="#0"><i class="fab fa-facebook"></i></a>
</li>
</ul>
</div> <!-- end header-nav__content -->
</nav> <!-- end header-nav -->
<a class="header-menu-toggle" href="#0">
<span class="header-menu-icon"></span>
</a>
</header> <!-- end s-header -->
<!-- home
================================================== -->
<section id="home" class="s-home target-section" data-parallax="scroll" data-image-src="images/hero-bg.jpg" data-natural-width=3000 data-natural-height=2000 data-position-y=top>
<div class="shadow-overlay"></div>
<div class="home-content">
<div class="row home-content__main">
<h1>
open source, <br>
by students.
</h1>
<p>
we build user friendly software <br>
to help the U of T community.
</p>
</div> <!-- end home-content__main -->
</div> <!-- end home-content -->
<ul class="home-sidelinks">
<li><a class="smoothscroll" href="#about">About<span>who we are</span></a></li>
<li><a class="smoothscroll" href="#services">Mission<span>what we do</span></a></li>
<li><a class="smoothscroll" href="#works">Works<span>what we did</span></a></li>
<li><a class="smoothscroll" href="#contact">Contact<span>get in touch</span></a></li>
</ul> <!-- end home-sidelinks -->
<ul class="home-social">
<li class="home-social-title">follow us</li>
<li><a href="https://github.com/uoft-dev">
<i class="fab fa-github"></i>
<span class="home-social-text">github</span>
</a></li>
<li><a href="#0">
<i class="fab fa-facebook"></i>
<span class="home-social-text">facebook</span>
</a></li>
</ul> <!-- end home-social -->
<a href="#about" class="home-scroll smoothscroll">
<span class="home-scroll__text">Scroll Down</span>
<span class="home-scroll__icon"></span>
</a> <!-- end home-scroll -->
</section> <!-- end s-home -->
<!-- about
================================================== -->
<section id='about' class="s-about">
<div class="row section-header" data-aos="fade-up">
<div class="col-full">
<h3 class="subhead">Who We Are</h3>
<h1 class="display-1">We are a group of students inspired by the open source movement, passionate about building software for the community</h1>
</div>
</div> <!-- end section-header -->
<div class="row" data-aos="fade-up">
<div class="col-six tab-full">
<blockquote cite="https://www.brainyquote.com/quotes/linus_torvalds_587370?src=t_open_source">
<p>
There were open source projects and free software before Linux was there.
Linux in many ways is one of the more visible and one of the bigger technical projects in this area,
and it changed how people looked at it because Linux took both the practical and ideological approach.
</p>
<cite>
Linus Torvalds
</cite>
</blockquote>
</div>
</div> <!-- end about-desc -->
</section> <!-- end s-about -->
<!-- services
================================================== -->
<section id='services' class="s-services light-gray">
<div class="row section-header" data-aos="fade-up">
<div class="col-full">
<h3 class="subhead">What We Do</h3>
<h1 class="display-1">We build projects that benefit the UofT Community.</h1>
</div>
</div> <!-- end section-header -->
<div class="row" data-aos="fade-up">
<div class="col-full">
<p class="lead">
Open-source is the main focus; whether it is <mark>mobile</mark> development, <mark>dev tools</mark>, or just a random idea that you have, we are interested!
</p>
</div>
</div> <!-- end about-desc -->
</section> <!-- end s-services -->
<!-- works
================================================== -->
<section id='works' class="s-works">
<div class="row section-header" data-aos="fade-up">
<div class="col-full">
<h3 class="subhead">Featured Works</h3>
<h1 class="display-1">These are just some of our most recent projects.</h1>
</div>
</div> <!-- end section-header -->
<div class="row">
<div class="col-six tab-full">
<h3>T Map (for University of Toronto)</h3>
<p><a href="#"><img width="120" height="120" class="pull-left" alt="sample-image" src="images/projects/map.png"></a>
A student-made Android app that provides an user-friendly interface to navigate the many buildings, restaurants, and green spaces on campus.
The app currently supports all 3 of the University of Toronto campuses (UTSG, UTM, and UTSC), with plans in the future to expand to other universities.
Additional features such as student-course and exam-schedule integration are on the roadmap for a future iteration.
</p>
<p>
Liscenced under the <mark>MIT Liscence</mark>, anyone who wants to expand the app with community-driven features may do so, by submitting a pull request via <a href="https://github.com/uoft-dev/TMap">GitHub</a>. The app is available on the <a href="https://bit.ly/UofTMapApp">Google Play Store</a>
</p>
<p>
Developed by Howard Chen and Murad Akhundov
</p>
</div>
<div class="col-six tab-full">
<h3>UofT Course Info</h3>
<p><a href="#"><img width="120" height="120" class="pull-left" alt="sample-image" src="images/projects/course.png"></a>
Automatically adds tooltips to course codes online!
Each course code that corresponds to a valid UofT course will have a tooltip, displaying the course title, description, pre-requisite information, as well as a list of instructors currently teaching the course.
Additionally, useful resources such as textbooks and session information is also provided.
</p>
<p>
Project can be found on <a href="https://github.com/uoft-dev/UofTCourseInfo">GitHub</a>
and as an extension for <a href="https://chrome.google.com/webstore/detail/uoft-course-info/jcbiiafabmhjeiepopiiajnkjhcdieme">Chrome</a>
and <a href="https://addons.mozilla.org/en-US/firefox/addon/uoft-course-info/">Firefox</a>
</p>
<p>
Developed by Murad Akhundov
</p>
</div>
</div>
</section> <!-- end s-works -->
<!-- stats
================================================== -->
<section id="stats" class="s-stats">
<div class="row stats block-1-3 block-m-1-2 block-mob-full" data-aos="fade-up">
<div class="col-block stats__col ">
<div class="stats__count plus-s">26</div>
<h5>Stars on Github</h5>
</div>
<div class="col-block stats__col">
<div class="stats__count">2</div>
<h5>Products Launched</h5>
</div>
<div class="col-block stats__col">
<div class="stats__count plus-s">450</div>
<h5>Users</h5>
</div>
</div> <!-- end stats -->
</section> <!-- end s-stats -->
<!-- contact
================================================== -->
<section id="contact" class="s-contact">
<div class="row section-header" data-aos="fade-up">
<div class="col-full">
<h3 class="subhead subhead--light">Contact Us</h3>
<h1 class="display-1 display-1--light">Get in touch and let's make something great together.</h1>
</div>
</div> <!-- end section-header -->
<div class="row">
<div class="col-full contact-main" data-aos="fade-up">
<p>
<a href="" class="contact-email">hello@uoft.dev</a>
</p>
</div> <!-- end contact-main -->
</div> <!-- end row -->
<div class="row">
<div class="col-five tab-full contact-secondary" data-aos="fade-up">
<h3 class="subhead subhead--light">Where To Find Us</h3>
<p class="contact-address">
University of Toronto,<br>
St. George Campus<br>
Toronto, ON<br>
</p>
</div> <!-- end contact-secondary -->
<div class="col-five tab-full contact-secondary" data-aos="fade-up">
<h3 class="subhead subhead--light">Follow Us</h3>
<ul class="contact-social">
<li>
<a href="https://github.com/uoft-dev"><i class="fab fa-github"></i></a>
</li>
<li>
<a href="#0"><i class="fab fa-facebook"></i></a>
</li>
</ul> <!-- end contact-social -->
</div> <!-- end contact-secondary -->
</div> <!-- end row -->
<div class="row">
<div class="col-full cl-copyright">
<span><!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. -->
Copyright ©<script>document.write(new Date().getFullYear());</script> All rights reserved | This template is made with <i class="fa fa-heart" aria-hidden="true"></i> by <a href="https://colorlib.com" target="_blank">Colorlib</a>
<!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. --></span>
</div>
</div>
<div class="cl-go-top">
<a class="smoothscroll" title="Back to Top" href="#top"><i class="icon-arrow-up" aria-hidden="true"></i></a>
</div>
</section> <!-- end s-contact -->
<!-- photoswipe background
================================================== -->
<div aria-hidden="true" class="pswp" role="dialog" tabindex="-1">
<div class="pswp__bg"></div>
<div class="pswp__scroll-wrap">
<div class="pswp__container">
<div class="pswp__item"></div>
<div class="pswp__item"></div>
<div class="pswp__item"></div>
</div>
<div class="pswp__ui pswp__ui--hidden">
<div class="pswp__top-bar">
<div class="pswp__counter"></div><button class="pswp__button pswp__button--close" title="Close (Esc)"></button> <button class="pswp__button pswp__button--share" title=
"Share"></button> <button class="pswp__button pswp__button--fs" title="Toggle fullscreen"></button> <button class="pswp__button pswp__button--zoom" title=
"Zoom in/out"></button>
<div class="pswp__preloader">
<div class="pswp__preloader__icn">
<div class="pswp__preloader__cut">
<div class="pswp__preloader__donut"></div>
</div>
</div>
</div>
</div>
<div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap">
<div class="pswp__share-tooltip"></div>
</div><button class="pswp__button pswp__button--arrow--left" title="Previous (arrow left)"></button> <button class="pswp__button pswp__button--arrow--right" title=
"Next (arrow right)"></button>
<div class="pswp__caption">
<div class="pswp__caption__center"></div>
</div>
</div>
</div>
</div> <!-- end photoSwipe background -->
<!-- preloader
================================================== -->
<div id="preloader">
<div id="loader">
</div>
</div>
<!-- Java Script
================================================== -->
<script src="js/jquery-3.2.1.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
</body>
</html>