This repository was archived by the owner on May 5, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.php
More file actions
110 lines (110 loc) · 4.6 KB
/
about.php
File metadata and controls
110 lines (110 loc) · 4.6 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
<?php include_once "common.php" ?>
<!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>About Team 9651 | UCC Robotics</title>
<meta name="description" content="The official website for VEX Robotics team 9651, and the UCC Robotics Club.">
<link rel="icon" href="favicon.ico">
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/font-awesome.min.css" />
</head>
<body>
<?php include_once "header.php" ?>
<div class="section-primary">
<div class="container">
<div class="row spacer-top">
<div class="col-sm-4">
<img class="img-responsive" src="img/logo-circle-inverse.png" alt="Team 9651's Logo" />
</div>
<div class="col-sm-8">
<h1>About Team 9651</h1>
<p class="lead">
Team 9651 is Upper Canada College's robotics club! At Team 9651, we compete in VEX competitions, do community service under Horizons Robotics, and hold workshops and drop-in sessions to teach students about just how awesome robots are! Our primary goal at the club is education: there are thousands of different things that students can learn about robotics, programming, or technology, and we aim to provide a way for students to explore those areas.
</p>
</div>
</div>
</div>
</div>
<div class="section-secondary">
<h1 class="text-center">Club History</h1>
<ul class="timeline">
<li>
<div class="timeline-badge">1993</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4 class="timeline-title">Kevin Olds Starts the UCC Computer Club</h4>
</div>
<div class="timeline-body">
<p>
Teacher Kevin Olds supervises the UCC Computer Club, a student-led initative to explore computers and the power that they give students.
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-badge">2004</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4 class="timeline-title">The UCC Robotics Club is officially formed.</h4>
</div>
<div class="timeline-body">
<p>
The club starts off as just a drop-in session for students at UCC to explore robotics.
</p>
</div>
</div>
</li>
<li class="timeline">
<div class="timeline-badge">2012</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4 class="timeline-title">UCC Robotics Starts Competing in VEX Robotics</h4>
</div>
<div class="timeline-body">
<p>
UCC Robotics joins the VEX Competition, receiving the number 9651. Students ramp up their work to meet the complexity of the competition.
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-badge">2013</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4 class="timeline-title">Team 9651 Wins DMCI VEX Competition</h4>
</div>
<div class="timeline-body">
<p>
Only one year after joining VEX, Team 9651 wins their first competition versus over 100 teams. The team is very happy, and continues working hard.
</p>
</div>
</div>
</li>
<li class="timeline">
<div class="timeline-badge">2014</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4 class="timeline-title">Horizons Robotics Begins</h4>
</div>
<div class="timeline-body">
<p>
Team 9651/UCC Robotics partners with the Horizons program at Upper Canada College, to provide robotics-based education to inner-city students.
</p>
</div>
</div>
</li>
</ul>
<p>
Thank you to Ms. Jill Spellman, College Archivist, for providing us with this information.
</p>
</div>
<?php include_once "footer.php" ?>
<script src="js/google_analytics.js"></script>
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>