-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
82 lines (66 loc) · 2.46 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
<!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.0">
<title>Dot</title>
<link rel="stylesheet" href="../sherpa/lib/bootstrap-2.2.2.css">
<link rel="stylesheet" href="../sherpa/lib/bootstrap-responsive-2.2.2.css">
<!-- Before loading other things (that might error), create hooks to report errors/loads for continuous testing -->
<script src="../chipper/js/sim-tests/pageload-connector.js"></script>
<script src="../sherpa/lib/jquery-2.1.0.min.js"></script>
<!-- For the styling -->
<script src="../sherpa/lib/bootstrap-2.2.2.js"></script>
<!-- Our code, in either the concatenated 'with comments' version or the minified version -->
<style type="text/css">
.exampleScene {
margin: 15px auto;
border: 1px solid black;
}
</style>
</head>
<body>
<div class="navbar navbar-inverse navbar-static-top">
<div class="navbar-inner">
<a class="brand" href="../dot">Dot</a>
<ul class="nav">
<li class="active"><a href=".">Home</a></li>
<li><a href="doc">Documentation</a></li>
<li><a href="examples">Examples</a></li>
<li><a href="tests">Tests</a></li>
</ul>
<ul class="nav pull-right">
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Related <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="../scenery">Scenery</a></li>
<li><a href="../kite">Kite</a></li>
<li><a href="../dot">Dot</a></li>
</ul>
</li>
</ul>
</div>
</div>
<div class="row-fluid">
<div class="span3"></div>
<div class="span6">
<div class="page-header" style="text-align: center;">
<h1>Dot</h1>
</div>
<p class="lead">
A math library with a focus on mutable and immutable linear algebra for 2D and 3D applications.
</p>
<p>by <a href="https://phet.colorado.edu">PhET Interactive Simulations</a></p>
<div style="text-align: center; padding-top: 10px;">
<a class="btn btn-primary" type="button" href="dist/dot.min.js" download>Download latest version</a>
</div>
<div style="text-align: center; padding-top: 10px;">
<a class="btn" type="button" href="doc">Documentation</a>
<a class="btn" type="button" href="https://github.com/phetsims/dot">GitHub Project</a>
</div>
</div>
<div class="span3"></div>
</div>
</body>
</html>