-
Notifications
You must be signed in to change notification settings - Fork 3
/
credits.html
69 lines (69 loc) · 1.4 KB
/
credits.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Island Rush Credits</title>
<link rel="stylesheet" type="text/css" href="frontend/css/main.css" />
<link
rel="shortcut icon"
href="./frontend/images/favicon.ico"
type="image/x-icon"
/>
</head>
<body>
<h1>Island Rush Credits</h1>
<nav>
<a href="index.php">Home</a>
<a href="troubleshoot.html">Troubleshoot</a>
<a class="active" href="credits.html">Credits</a>
<a
href="https://gitreports.com/issue/island-rush/K2"
target="_blank"
style="float: right"
>Report an Issue</a
>
<a
href="https://github.com/island-rush/K2/wiki"
target="_blank"
style="float: right"
>Wiki</a
>
</nav>
<br />
<h2>
Island Rush was created through a joint MSS and CS department capstone for
the Class of 2019.
</h2>
<br />
<table>
<thead>
<tr>
<th style="padding-right: 200px">MSS Cadets</th>
<th>CS Cadets</th>
</tr>
</thead>
<tbody>
<tr>
<td>Nic Marron</td>
<td>Spencer Adolph (current maintainer)</td>
</tr>
<tr>
<td>Juan Duque</td>
<td>Jack Kulp</td>
</tr>
<tr>
<td>Bailey Little</td>
<td>Eric Yandura</td>
</tr>
<tr>
<td>Jonathan Kaltenbaugh</td>
<td>April Lewis</td>
</tr>
<tr>
<td>Griffin Gluck</td>
<td>Adam Payne</td>
</tr>
</tbody>
</table>
</body>
</html>