-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (43 loc) · 1.41 KB
/
index.html
File metadata and controls
50 lines (43 loc) · 1.41 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>Graph-Teach</title>
<link rel="stylesheet" href="compiled/styles.css">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css">
</head>
<body>
<div class='content-with-icon'>
<div class='cwi-icon' id='side-panel'>
<h1>
GraphTeach
</h1>
Your buddy to graph theory.
<hr>
<div class='vlist vlist-spacy'>
<a href='javascript:void(0);' id='layout-arbor'>Lay out</a>
<div class='hlist'>
<a href='javascript:void(0);' id='save-json' download='graph.json'>Save JSON</a>
<input type="text" id='save-file-name' placeholder='File name'>
</div>
<div class='hlist'>
<span>Load JSON</span>
<input type="file" id="load-json" name="load-json" />
</div>
</div>
</div>
<div class='cwi-content'>
<div id='main-panel' class='position-relative'>
<div id="cy"></div>
</div>
</div>
</div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script src="lib/cytoscape.js"></script>
<script src="lib/cytoscape.js-edgehandles.js"></script>
<script src="lib/arbor.js"></script>
<script src="compiled/web-graph.js"></script>
</body>
</html>