-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
89 lines (85 loc) · 3.37 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
88
89
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset='utf-8'>
<meta content='IE=edge' http-equiv='a'>
<title>
Soccer
</title>
<meta content='' name='description'>
<meta content='width=device-width, initial-scale=1' name='viewport'>
<link href='css/normalize.css' rel='stylesheet'>
<link href='css/main.css' rel='stylesheet'>
<link href='css/nubots-site.css' rel='stylesheet'>
<script src='js/vendor/modernizr-2.6.2.min.js'></script>
<script src='js/vendor/hyphenate.js'></script>
</head>
<body>
<div class='page-container'>
<div class='header'>
<div class='page-title'>
<div class='nubots-logo'>
<span class='NU'>NU</span>
<span class='bots'>bots</span>
</div>
<a class='university' href='http://www.newcastle.edu.au/'>The University of Newcastle</a>
</div>
<div class='soccer-container'>
<div class='field'>
<div class='goal goal1'>
<div class='goal-inner'></div>
</div>
<div class='goal goal2'>
<div class='goal-inner'></div>
</div>
<div class='ball'>
<div class='ball-inner'></div>
</div>
<div class='player player1'>
<div class='player-inner'></div>
</div>
<div class='player player2'>
<div class='player-inner'></div>
</div>
<div class='player player3'>
<div class='player-inner'></div>
</div>
<div class='player player4'>
<div class='player-inner'></div>
</div>
</div>
</div>
</div>
<div class='main-container'>
<div class='menu'>
<span class='home'>
<a href='.'>Home</a>
</span>
<span class='about'>
<a href='about/'>About</a>
</span>
<span class='downloads'>
<a href='docs/'>Source / Documentation / Downloads</a>
</span>
<span class='contact'>
<a href='contact/'>Contact</a>
</span>
</div>
<div class='content-container hyphenate'>
<h1>Home</h1>
<p>Welcome to the NUbots codebase project page.</p>
<p>Presently, the NUbots codebase runs on Ubuntu 12.04, on the <a href="http://www.robotis.com/xe/darwin_en">DARwIn-OP</a>
humanoid robot, and is used to play robotic football (soccer) in the annual
<a href="http://www.robocup.org/">Robocup</a> competition, in the <a href="http://www.tzi.de/humanoid">Kid Size Humanoid League</a></p>
<p>The NUbots codebase is developed by the NUbots team at the University of Newcastle, Australia.
The code is released as open source software, under the <a href="http://www.gnu.org/licenses/gpl-2.0.html">GNU GPL v2</a>.
All documentation relating to the code is also publicly released.</p>
<p>You can <a href="about.php">learn more about the codebase here</a>, or
<a href="docs.php">view the source code and documentation here</a>.
We'd also love to hear from you - you can <a href="contact.php">get in touch and stay up to date with us here</a>.</p>
</div>
<div class='footer'></div>
</div>
</div>
</body>
</html>