-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
69 lines (52 loc) · 2.01 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
64
65
66
67
68
69
<!DOCTYPE html>
<html>
<head>
<title>octoviz - github visualization of commit history</title>
<script type="text/javascript" src="https://code.jquery.com/jquery-1.7.min.js"></script>
<script type="text/javascript" src="lib/underscore-1.3.3.min.js"></script>
<script src="https://d3js.org/d3.v2.js"></script>
<script type="text/javascript" src="source/octocom.js"></script>
<script type="text/javascript" src="source/octoviz.js"></script>
<link type="text/css" rel="stylesheet" href="css/bootstrap-2.0.2.min.css">
<link type="text/css" rel="stylesheet" href="css/main.css">
</head>
<body>
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="brand" href="#">octoviz</a>
<ul class="nav">
<li class="active"><a href="#">Commit-History</a></li>
<li><a href="https://github.com/jamuhl/octoviz">Fork-Me</a></li>
</ul>
</div>
</div>
</div>
<div class="container">
<div class="page-header">
<h1> octoviz
<small> - visualize your github commit history</small>
</h1>
<div class="well">
<form id="loadControl" class="form-inline">
<input id="repo" type="text" value="jamuhl/octoviz" placeholder="user/repository" />
<input id="branch" type="text" value="master" placeholder="branch"/>
<button id="load" class="btn">load</button>
</form>
<form id="controls" class="form-inline">
<button id="play" class="btn btn-primary"><i class="icon-play"></i></button>
<button id="pause" class="btn"><i class="icon-pause"></i></button>
<button id="previous" class="btn"><i class="icon-step-backward"></i></button>
<button id="next" class="btn"><i class="icon-step-forward"></i></button>
</form>
</div>
</div>
<div id="main" class="content">
<div id="viz" ></div>
</div>
<footer id="footer">
<p>--- jamuhl 2010 ---</p>
</footer>
</div>
</body>
</html>