-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (34 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
41
42
43
44
45
46
47
<!DOCTYPE html>
<html>
<head>
<title>Machine Diagram</title>
<link href="./css/diagrammer.css" media="all" rel="stylesheet" type="text/css"/>
</head>
<body>
<div id="wrap">
<div id="header">
</div>
<div id="main">
<div id="main-left" >
<div id="mode-pane">
<div id="mode-text">
<a href="#" id="add-button" class="nav">add</a>
<a href="#" id="edit" class="nav">edit</a>
<a href="#" id="delete" class="nav">delete</a>
<a href="#" id="accept" class="nav">accept</a>
<a href="#" id="start" class="nav">start</a>
<a href="#" id="step" class="nav">step</a>
<a href="#" id="tape" class="nav">tape</a>
</div>
</div>
<div id="canvas-pane">
<div id="diagram"></div>
</div>
<div id="machine-pane"></div>
</div>
</div>
<div id="footer"></div>
</div>
<script data-main="./scripts/main" src="./scripts/lib/require.js"></script>
</body>
</html>