forked from concord-consortium/codap-data-interactives
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (52 loc) · 2.63 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
<?DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href ="./Common/css/site.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="./listing.js" language="javascript"></script>
<title>Data Interactives</title>
</head>
<body>
<header id="header">
<div>
<img src="https://codap.concord.org/_assets/img/[email protected]" alt="Common Online Data Analysis Program">
<div id="cc">
a product of
<a href="https://concord.org/" title="The Concord Consortium - Revolutionary digital learning for science, math, and engineering"><img src="http://codap.concord.org/_assets/img/cc-logo.png" alt="The Concord Consortium">
</a>
</div>
</div>
</header>
<div id="home-content">
<h1> CODAP Data Interactive Plugins</h1>
<p>Click on the title to open a CODAP document with the plugin, or drag the "Embeddable Link" into CODAP.</p>
<div id = 'top-nav-bar' class="center">
<nav class='nav-bar'></nav>
</div>
<div id = "listing_container"></div>
<div class = "form_container">
<form action = "#" id="codap_url_form">
<label>Enter CODAP build to use:</label>
<input id="codap-url" size="75" type="text" value="" />
<script type="text/javascript">
var pageLoc = location.href;
if (pageLoc.indexOf("https") > -1) {
$("#codap-url").val("https://codap.concord.org/releases/latest/static/dg/en/cert/index.html");
} else {
$("#codap-url").val("http://codap.concord.org/releases/latest/static/dg/en/cert/index.html");
}
</script>
</form>
</div>
</div>
<div id="credits">
<!--<p>Data Interactives repository: <a href="https://github.com/backspaces/agentscript">github.com/backspaces/agentscript</a></p>-->
<p>Concord Consortium's CODAP plugin repository: <a target="blank" href="https://github.com/concord-consortium/codap-data-interactives">github.com/concord-consortium/codap-data-interactives</a></p>
<p>Concord Consortium's CODAP project repository: <a target="blank" href="https://github.com/concord-consortium/codap">github.com/concord-consortium/codap</a></p>
<p>To find out more about the CODAP project: <a target="blank" href="https://concord.org/projects/codap">About CODAP</a></p>
</div>
<footer>
<p>© Copyright 2017 <a href="https://concord.org/" title="The Concord Consortium - Revolutionary digital learning for science, amth, and engineering">The Concord Consortium</a>. All rights reserved.</p>
</footer>
</body>
</html>