-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (36 loc) · 1.49 KB
/
index.html
File metadata and controls
40 lines (36 loc) · 1.49 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>openPDS</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/babel-core/5.8.23/browser.min.js"></script>
<script src="https://fb.me/JSXTransformer-0.13.3.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<link href="http://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.1/css/materialize.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.1/js/materialize.min.js"></script>
</head>
<body>
<ul class="tabs">
<li class="tab col s3 "><a href="#answerModules" class="red-text"><strong>Answer modules</strong></a></li>
<li class="tab col s3"><a href="#dataSources" class="active red-text"><strong>Data sources</strong></a></li>
</ul>
<div class="section no-pad-bot" id="index-banner">
<div id="dataSources" class="container">
<br><br>
<h3 class="header center red-text">Data sources</h3>
<div id="dataSourcesContainer"></div>
</div>
<div id="answerModules" class="container">
<br><br>
<h3 class="header center red-text">Answer modules</h3>
<div id="answerModulesContainer"></div>
</div>
</div>
<script>
global.document = window.document;
global.navigator = window.navigator;
</script>
<script type="text/jsx" src="components.jsx"></script>
</body>
</html>