forked from witheve/eve-experiments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
repl.html
22 lines (22 loc) · 1.24 KB
/
repl.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!doctype html5>
<html>
<head>
<title>Eve</title>
<link rel="icon" type="image/png" href="images/favicon.png" />
<link href="vendor/ionicons.css" rel="stylesheet" type="text/css"></link>
<link href="../vendor/codemirror.css" rel="stylesheet" type="text/css"></link>
<link href="css/reset.css" rel="stylesheet" type="text/css"></link>
<link href="css/repl.css" rel="stylesheet" type="text/css"></link>
<script src="/node_modules/codemirror/lib/codemirror.js" type="text/javascript"></script>
<script src="/node_modules/codemirror/addon/mode/overlay.js" type="text/javascript"></script>
<script src="/node_modules/codemirror/addon/edit/closebrackets.js" type="text/javascript"></script>
<script src="/node_modules/codemirror/addon/edit/matchbrackets.js" type="text/javascript"></script>
<script src="/node_modules/codemirror/mode/markdown/markdown.js" type="text/javascript"></script>
<script src="/node_modules/codemirror/mode/gfm/gfm.js" type="text/javascript"></script>
<script src="/node_modules/codemirror/mode/clojure/clojure.js" type="text/javascript"></script>
</head>
<body>
<canvas id="clear-pixel" width="1" height="1"></canvas>
<script src="bin/repl.bundle.js"></script>
</body>
</html>