This repository has been archived by the owner on Mar 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
87 lines (79 loc) · 3.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Garrit</title>
<meta property="og:title" content="Garrit">
<meta property="og:type" content="website">
<meta property="og:url" content="https://garrit.github.io/">
<meta property="og:image" content="https://garrit.github.io/tile.png">
<meta property="og:description" content="A modular and extensible online judging system.">
<style>
a
{
color: #00ffff;
}
html
{
background-color: #000000;
color: #ffffff;
font: normal 14pt "Helvetica", "Verdana", sans-serif;
line-height: 1.3em;
}
body
{
margin: 0;
}
h1
{
background-color: #00ffff;
font-size: 100%;
text-align: center;
margin: 0;
padding: 1em;
}
div#footer
{
font-size: 60%;
text-align: center;
margin-top: 4em;
}
div#main
{
margin: 1em auto;
max-width: 40em;
}
p
{
margin: 0 0 1em;
}
</style>
<link rel="icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
<h1><img src="logo.svg" alt="Garrit"></h1>
<div id="main">
<p><a href="https://github.com/Garrit/">Garrit</a> was
<a href="https://github.com/MrDOS">Samuel Coleman's</a>
<a href="http://cs.acadiau.ca/comp4983.html">final project</a> for
his Bachelor of Computer Science at the
<a href="http://cs.acadiau.ca/">Jodrey School of Computer Science</a>
at Acadia University. The concept was developed over a period
of two years prior to its implementation during the winter semester
of the 2014-2015 school year.</p>
<ul>
<li>Read about the project in its <a href="https://github.com/Garrit/docs/releases/download/v1.0.0/spec.pdf">specification</a></li>
<li>Read about the <a href="https://github.com/Garrit/docs/releases/download/v1.0.0/ref.pdf">reference implementations</a></li>
<li>Read the <a href="https://github.com/Garrit/docs/releases/download/v1.0.0/problems.pdf">problem definition specification</a></li>
<li>Browse the source code for: <ul>
<li>the <a href="https://github.com/Garrit/hub">negotiator</a></li>
<li>the <a href="https://github.com/Garrit/subport">submitter</a></li>
<li>the <a href="https://github.com/Garrit/executor">executor</a></li>
<li>the <a href="https://github.com/Garrit/judge">judge</a></li>
<li>the <a href="https://github.com/Garrit/reporter">reporter</a></li>
</ul></li>
</ul>
</div>
<div id="footer">Copyright © 2015 Samuel Coleman</div>
</body>
</html>