forked from cgmartin/iTunes-Library-Network-Graph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·51 lines (41 loc) · 2.34 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
<!doctype html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Wiki Graph Browser</title>
<meta name="description" content="Experimentation with D3.js force-directed graphs using BillSeitz WikiGraph data, code forked from iTunes library data">
<meta name="author" content="Bill Seitz">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="css/style.css">
<script src="http://cdnjs.cloudflare.com/ajax/libs/modernizr/2.5.3/modernizr.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="http://mbostock.github.com/d3/d3.js"></script>
<script src="js/wiki_graph.js"></script>
</head>
<body>
<a href="https://github.com/BillSeitz/WikiGraphBrowser"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub"></a>
<div id="page">
<header>
<h1>Wiki Graph Browser</h1>
</header>
<div role="main">
<p><a href="http://webseitz.fluxent.com/wiki/WikiGraphBrowser">Browsing Wiki Graph</a>.</p>
<p>Experimentation with D3.js force-directed graphs, forked from cgmartin project using iTunes library data. Now showing cross-references among a subset of wiki pages. A spike-solution applied at http://www.wikigraph.net/wikigraph .</p>
<div id="chart"></div>
</div>
<footer role="contentinfo">
<nav role="navigation">
<ul>
<li>By <a href="http://webseitz.fluxent.com/wiki/">BillSeitz</a> based on work by <a href="http://cgmartin.com">CGMartin</a></li>
<li>Using <a href="http://mbostock.github.com/d3/">D3.js</a></li>
</ul>
<p>Licenced under a <a href="http://creativecommons.org/licenses/by/3.0/">Creative Commons Attribution 3.0 License</a>.</p>
</nav>
</footer>
</div>
</body>
</html>