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 pathcontact.php
More file actions
63 lines (63 loc) · 2.71 KB
/
contact.php
File metadata and controls
63 lines (63 loc) · 2.71 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
<?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>Contact 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="text-center">
<h1>Contact Us</h1>
<h2>Club Leadership</h2>
</div>
<div class="row text-center">
<div class="col-sm-6">
<img class="img-responsive img-circle" src="img/john.png" />
<h3>John Mace</h3>
<h4>Club Head</h4>
<a class="text-white icon-medium" href="https://github.com/j0hnmace/"><span class="fa fa-fw fa-github"></span></a>
<a class="text-white icon-medium" href="https://jmace.me/"><span class="fa fa-fw fa-desktop"></span></a>
</div>
<div class="col-sm-6">
<img class="img-responsive img-circle" src="img/evan.jpg" />
<h3>Evan Boeckh</h3>
<h4>Club Head</h4>
<a class="text-white icon-medium" href="mailto:evan.boeckh@ucc.on.ca"><span class="fa fa-fw fa-envelope"></span></a>
</div>
</div>
</div>
</div>
<div class="section-secondary">
<div class="container">
<div class="row">
<div class="col-sm-3">
<img class="img-responsive img-circle" src="img/kolds.jpg" />
</div>
<div class="col-sm-9">
<h2>Faculty Advisor</h2>
<h3>Mr. Kevin Olds</h3>
<p class="lead">
Kevin Olds is the supervisor for Team 9651. He's worked at Upper Canada College for over 25 years, and has always been there to help students explore the sciences and technology. Currently, he teaches Computer Science at UCC. You can email him at <a href="mailto:kolds@ucc.on.ca">kolds@ucc.on.ca</a>.
</p>
</div>
</div>
<hr />
<h2 class="text-center">Check us out <a href="https://github.com/9651-Robotics">on GitHub <span class="fa fa-github"></span></a></h2>
</div>
</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>