forked from brendannee/github-visualization
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
63 lines (54 loc) · 1.9 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
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html>
<head>
<title>Hacker School Github Visualization</title>
<link rel="stylesheet" href="css/bootstrap.min.css" type="text/css" media="screen" title="no title" charset="utf-8">
<link type="text/css" rel="stylesheet" href="css/style.css"/>
</head>
<body>
<div class="navbar">
<div class="navbar-inner">
<div class="container">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" href="#">Hacker School Github Visualization</a>
</div>
</div>
</div>
<div class="container">
<div id="loading" class="well">
Loading...
<div class="progress progress-info progress-striped active">
<div class="bar" style="width: 1%;"></div>
</div>
</div>
<div id="content">
<div id="students"></div>
<div id="repoInfo">
<h3><a href="#"></a></h3>
<div class="description"></div>
<div class="stats">
<div class="watchers">Watchers: <span></span></div>
<div class="forks">Forks: <span></span></div>
<div class="collaborators">Collaborators: <span></span></div>
<div class="languages">Languages: <span></span></div>
<div class="commits">Last Commit: <span></span></div>
</div>
<div class="link"><a href="#"></a></div>
</div>
<div id="chart"></div>
</div>
<footer class="footer">
<a href="https://github.com/brendannee/github-visualization">View on Github</a>
</footer>
</div> <!-- /container -->
<script src="js/jquery-1.7.1.min.js"></script>
<script src="js/d3.min.js"></script>
<script src="js/d3.layout.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/script.js"></script>
</body>
</html>