-
Notifications
You must be signed in to change notification settings - Fork 42
/
index.html
49 lines (45 loc) Β· 2.19 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
<!DOCTYPE html>
<html>
<meta charset="utf-8">
<head itemscope itemtype="https://schema.org/WebSite">
<title itemprop='name'>GitHub Visualizer</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="canonical" href="https://veniversum.me/git-visualizer/" itemprop="url">
<link rel="shortcut icon" type="image/png" href="images/favicon.png" />
<script src="https://d3js.org/d3.v3.min.js"></script>
<script src="https://code.jquery.com/jquery-2.2.0.min.js"></script>
<script src="js/jquery.tipsy.js"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/jquery.tipsy/1.0.2/jquery.tipsy.css" rel="stylesheet" type="text/css" />
<link href="css/main.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="graph"></div>
<section id="header">
<header>
<img id="logo" src="images/logo.png" />
<p>Enter a GitHub user/organization name and repository and hit Go! (<a href="?owner=atom&repo=atom">Try atom/atom</a>) <br />
Scroll to zoom, click and drag to pan. <br />
<i style="color:#f00">Warning:</i> Large repos can get laggy
</p>
</header>
</section>
<div id="prompt">
<form class="start" id="signup-form" action="javascript:getRepo()">
<input type="text" name="owner" id="owner" placeholder="User/Organization" />
<input type="text" name="repo" id="repo" placeholder="Repository" />
<input class="flat-button" type="submit" value="Go!" />
</form>
</div>
<a class="github-fork-ribbon left-bottom fixed" href="https://github.com/veniversum/git-visualizer" title="Fork me on GitHub">Fork me on GitHub</a>
<footer><a href="https://veniversum.me">Created by Aw Young Qingzhuo</a></footer>
<script src="js/github.js" onload="checkQuery();"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-55042305-4', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>