forked from phzietsman/crypto-graph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (36 loc) · 1.41 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
48
49
50
51
52
<!DOCTYPE html>
<html>
<head>
<!--social media meta tags-->
<meta property="og:title" content="crypto-graph">
<meta property="og:description" content="#crypto + cytoscapejs = easy crypto-graph(y)">
<meta property="og:image" content="https://phzietsman.github.io/crypto-graph/meta.png">
<meta property="og:url" content="https://phzietsman.github.io/crypto-graph/index.html">
<meta name="twitter:card" content="summary_large_image">
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<link href="3rdparty/font-awesome-4.7.0/css/font-awesome.min.css" rel="stylesheet" />
<link href="style.css" rel="stylesheet" />
<meta charset=utf-8 />
<meta name="viewport" content="user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, minimal-ui">
<title>cg</title>
<script src="3rdparty/cytoscape.min.js"></script>
<script src="3rdparty/jquery.js"></script>
<script src="3rdparty/handlebars.js"></script>
<script src="3rdparty/typeahead.bundle.js"></script>
<script src="3rdparty/lodash.min.js"></script>
</head>
<body>
crypto-graph
<div id="search-wrapper">
<input type="text" class="form-control" id="search" placeholder="Search">
</div>
<div id="cy"></div>
<div id="loading">
<span class="fa fa-spinner fa-spin"></span>
</div>
<div id="info">
</div>
<script src="code.js"></script>
</body>
</html>