-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·102 lines (92 loc) · 3.58 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
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="en">
<head profile="http://www.w3.org/2005/10/profile">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="CPSGrader">
<meta name="author" content="">
<link rel="icon"
type="image/png"
href="static/img/cg.png">
<!-- Stylesheets -->
<link href="static/css/bootstrap.min.css" rel="stylesheet">
<link href="static/css/bootstrap-responsive.css" rel="stylesheet">
<link href="static/css/cpsgrader.css" rel="stylesheet">
<!-- <link href="css/google-code-prettify/prettify.css"
rel="stylesheet"></script> -->
<title>CPSGrader: UC Berkeley Auto-Grader for Cyber-Physical Systems</title>
</head>
<body>
<div id="mainnav" class="navbar navbar navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle"
data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="./"><IMG src="./static/img/logo.png"
height=30 /></a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a href="./about">About</a></li>
<li><a href="./install">Download and Install</a></li>
<li><a href="./getting-started">Getting Started</a></li>
<li><a href="./contact">Contact</a></li>
</ul>
</div>
</div>
</div>
<div id="jumbotron-hero" class="jumbotron">
<div class="container text-center">
<p><img src="static/img/logo.png" alt="CPSGrader"
height=60 /></p>
<p>UC Berkeley Auto-Grader for Cyber-Physical Systems</p>
<p>
<a class="btn btn-primary btn-lg"
href="./about">Learn More »</a>
<a class="btn btn-primary btn-lg"
href="./install/download/"> Download CPSGrader</a>
</p>
<br /> <br />
<p>
<img src="static/img/ucb.jpg" alt="UC Berkeley"
height=80 />
</p>
</div>
</div> <!-- jumbotron-hero -->
<div id="footer" class="row">
<div class="col-lg-6 col-lg-offset-3">
<h6><small>
<p class="text-center">Website designed with, and inspired by,
<a href="http://getbootstrap.com/">Bootstrap</a> |
<a href="http://bootswatch.com/spacelab/">Space Lab</a>
theme from <a href="http://bootswatch.com/">Bootswatch</a></p>
</small></h6>
</div>
</div>
</div> <!-- container -->
<!-- This code that loads JavaScript files is placed at the end of
the document, so that the pages load faster. -->
<script src="static/js/jquery.js"></script>
<script src="static/js/bootstrap.min.js"></script>
<script>
(function(i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function() {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o), m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script',
'//www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-57139954-1', 'auto');
ga('send', 'pageview');
</script>
<!-- <script src="js/google-code-prettify/prettify.js"></script> -->
</body>
</html>