forked from Crystal-Clear/codecrystal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
graph.html
28 lines (28 loc) · 1.19 KB
/
graph.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Pwetty Gwaph</title>
<!-- <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,400,600" rel="stylesheet" type="text/css"> -->
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Raleway" />
<link rel="stylesheet" href="/static/d3/d3.css">
</head>
<body>
<div class="header">
<img class="logo" src="/static/images/codeCrystal2copia.png" />
<p class="github-repo"></p>
</div>
<div class="search-container ui-widget">
<input class="search">
<button class = "search-button" type="button" onclick="searchNode()">Search</button>
</div>
<div class="node-container">
<div class="pinned-nodes"></div>
</div>
</body>
<script type="text/javascript" src="/static/d3/d3.js"></script>
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script type='text/javascript' src="http://code.jquery.com/ui/1.11.0/jquery-ui.min.js"> </script>
<script type='text/javascript' src="http://code.jquery.com/ui/1.11.0/themes/smoothness/jquery-ui.css"> </script>
<script type="text/javascript" src="/static/d3/graphGenerator.js"></script>
</html>