-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathindex.html
40 lines (40 loc) · 1.35 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
<!doctype html>
<html lang="en">
<head>
<title>Grace browser</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Live demo for the Fall-from-Grace functional programming language">
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="Grace browser" />
<meta name="twitter:description" content="Live demo for the Fall-from-Grace functional programming language" />
<link rel="stylesheet" href="./css/bootstrap.min.css">
<link rel="stylesheet" href="./css/codemirror.css">
<link rel="stylesheet" href="./css/grace.css">
</head>
<body>
<div class="container">
<header>
<h1 class="display-4">Grace browser</h1>
</header>
<main>
<textarea style="display: none" id="input"></textarea>
<br/>
<button id="start-tutorial" type="button" class="btn btn-primary" style="display: none;">Try the tutorial</button>
<div id="output"></div>
<pre id="error"></pre>
</main>
</div>
</body>
<script language="javascript" src="js/codemirror.js"></script>
<script language="javascript" src="js/python.js"></script>
<script>
function replaceChildrenWorkaround(x, y) {
x.replaceChildren(...y)
}
function deleteSearchParamWorkaround(x, y) {
x.delete(y)
}
</script>
<script defer language="javascript" src="js/all.min.js"></script>
</html>