-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (67 loc) · 2.58 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>
<!--
This document and it's related template files use normal classes for styling.
"js-"-prefixed classes have styles toggleable by scripts.
IDs are used as action hooks for scripts exclusively.
-->
<html lang="en">
<head>
<link rel="author" href="./humans.txt">
<link rel="shortcut icon" href="./images/favicon.ico" />
<link rel="stylesheet" href="./styles/main.css">
<meta charset="utf-8">
<!-- Scripts -->
<script src="./scripts/vendor/async.js"></script>
<script src="./scripts/vendor/base64.js"></script>
<script src="./scripts/vendor/d3.v3.js"></script>
<script src="./scripts/vendor/jquery.js"></script>
<script src="./scripts/vendor/underscore.js"></script>
<!-- Dagre depends on d3 -->
<script src="./scripts/vendor/dagre.js"></script>
<!-- Library github depends on base64 and underscore -->
<script src="./scripts/vendor/github.js"></script>
<script src="./scripts/global.js"></script>
<script src="./scripts/graphEngine.js"></script>
<script src="./scripts/mute.js"></script>
<script src="./scripts/main.js"></script>
<title>REaSoN</title>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="/" id="home" class="selected">Home</a></li>
<li class="js-loggedIn hidden">
<form action="?" id="conversation">
<input type="hidden" name="page" value="conversation">
<input type="text" name="repo" placeholder="owner/repository" autofocus>
<input type="submit" value="View Conversation">
</form>
</li>
<li class="floatright js-loggedOut hidden">
<form action="?" id="login">
<input type="text" name="username" placeholder="Username" autofocus>
<input type="password" name="password" placeholder="Password">
<input type="submit" value="Login">
</form>
</li>
<li class="floatright js-loggedIn hidden"><input type="button" value="Logout" id="logout"></li>
</ul>
</nav>
</header>
<div role="main">
<p>Loading...</p>
<p>This might take a while for big repositories.</p>
</div>
<div id="overlay" class="hidden">
<div class="overlay"></div>
<div class="overoverlay">
<form action="#">
<textarea class="aligncenter"></textarea><br />
<input type="reset" value="cancel" /> <input type="submit" value="reply" />
</form>
</div>
</div>
<footer>© 2013 <a href="https://github.com/dctr">dctr</a></footer>
</body>
</html>