-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (44 loc) · 1.65 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>browser-based experiments</title>
<!-- fonts from Google fonts -->
<link
href="https://fonts.googleapis.com/css?family=Noto+Sans:400,700|Noto+Serif:400,700|Playfair+Display:700"
rel="stylesheet"
/>
<!-- css -->
<link
rel="stylesheet"
type="text/css"
href="node_modules/babe-project/babe.css"
/>
<link rel="stylesheet" href="style.css" />
<!-- js dependencies -->
<script src="node_modules/phoenix/priv/static/phoenix.js"></script>
<script src="node_modules/babe-project/babe.full.js"></script>
<!-- load the trials -->
<!--
<script src="trial_info/main_trials.js"></script>
<script src="trial_info/practice_trials.js"></script>
-->
<script src="iterated-experiment-utils.js"></script>
<script src="iterated-experiment-views.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.5/lodash.js"></script>
<script src="views.js"></script>
<script src="main.js"></script>
</head>
<body>
<noscript
>This task requires JavaScript. Please enable JavaScript in your
browser and reload the page. For more information on how to do that,
please refer to
<a href="https://enable-javascript.com" target="_blank"
>enable-javascript.com</a
>
</noscript>
<!-- views are inserted in main -->
<main id="main">Loading...</main>
</body>
</html>