-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
47 lines (34 loc) · 1.04 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>squim</title>
<link rel="stylesheet" href="http://css.cdn.tl/normalize.css">
<link rel="stylesheet" href="http://current.bootstrapcdn.com/bootstrap-v204/css/bootstrap-combined.min.css">
<link rel="stylesheet" href="css/style.css">
<script data-main="js/squim.demo" src="http://requirejs.org/docs/release/2.0.2/minified/require.js"></script>
</head>
<body>
<div class="container">
<div class="hero-unit">
<h1>squim</h1>
<p>a js implementation of <a href="http://web.cs.wpi.edu/~jshutt/kernel.html">kernel</a> for fun and profit</p>
<p>before you ask, of course it's <a href="test/index.html">tested</a></p>
</div>
<div class="alert alert-info">
this implementation is really alpha quality
</div>
<div class="editor">
<h2>code</h2>
<textarea rows=5 cols=80 id="code"></textarea>
<div class="buttons">
<button id="run">run</button>
</div>
</div>
<div class="results">
<h2>result</h2>
<div id="result"></div>
</div>
</div>
</body>
</html>