-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
92 lines (86 loc) · 5.13 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
<?DOCTYPE html>
<html>
<head>
<title>CODAP Example Documents</title>
<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>
</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>
<section id="home-content">
<section id="title">
<h1> CODAP Example Documents</h1>
</section>
</section>
<section id="intro">
<p>To open a CODAP Example document, click on the title or drag the "Embeddable Link" into CODAP. To open a new CODAP document, click <a href="https://codap.concord.org/releases/latest/">here</a></p>
</section>
<section id="search_area">
<form id="search" action="#" ><input type="search" id="keyword" name="keyword" value=""
placeholder="Search by keyword..."/> <input
class="button" type="submit" value="Search"/></form>
</section><!-- /#search -->
<section id="content_area" >
<div id="filter-category">
<form id="categories">
<input id="math" class="category-checkbox" type="checkbox" name="category" value="math"><label for="category_math"></label>Math<br>
<input id="science" class="category-checkbox" type="checkbox" name="category" value="science"><label for="category_science"></label>Science<br>
<input id="socsci" class="category-checkbox" type="checkbox" name="category" value="socsci"><label for="category_socsci"></label>Social Studies<br>
<input id="language" class="category-checkbox" type="checkbox" name="category" value="language_arts"><label for="category_language_arts"></label>Language Arts<br>
<input id="miscellaneous" class="category-checkbox" type="checkbox" name="category" value="miscellaneous"><label for="category_misc"></label>Miscellaneous<br>
</form>
</div>
<div id = "listing_container"></div>
</section>
<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 class="credits">
<p>Concord Consortium's CODAP example documents repository: <a target = "blank" href="https://github.com/concord-consortium/codap-data">https://github.com/concord-consortium/codap-data</a></p>
<p>Concord Consortium's CODAP plugins 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>
<p>To find out more about CODAP: <a target="blank" href="https://codap.concord.org">CODAP</a></p>
<p>Examples of CODAP embedded data analysis: <a target="blank" href="https://concord.org/wp-content/uploads/2016/12/codap/embed/">Examples of Embedded Data Analysis</a> </p>
<p>A Spanish language version of this page: <a target="blank" href="https://cienciascontic.github.io/codap-data/">Ejemplos de CODAP</a></p>
</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>-->
<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>