-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (51 loc) · 2.08 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
<html>
<head>
<title>Watched Repositories</title>
<link rel="stylesheet" href="styles.css">
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript" src="http://fgnass.github.io/spin.js/spin.min.js"></script>
<script type="text/javascript" src="http://rawgithub.com/joequery/Stupid-Table-Plugin/master/stupidtable.min.js?dev"></script>
<script type="text/javascript" src="http://rawgithub.com/janl/mustache.js/master/mustache.js"></script>
<script type="text/javascript" src="http://rawgithub.com/jgallen23/routie/master/dist/routie.min.js"></script>
<script type="text/javascript" src="watched.js"></script>
</head>
<body>
<div class="wrapper">
<header>
<h1>Watched Repositories</h1>
<p> @github </p>
<ul>
<li id="spinner">
</ul>
</header>
<section>
<form>
<input id="username" type="search" placeholder="Github Username">
<input type="submit" value="Go!" id="submit">
</form>
<table border="0">
<thead>
<tr>
<th data-sort="string" class="names">name</th>
<th class="descriptions">description</th>
<th data-sort="string" class="users">user</th>
<th data-sort="int" class="watchers">watchers</th>
<th data-sort="string" class="languages">language</th>
</tr>
</thead>
<tbody id="entries">
</tbody>
</table>
</section>
</div>
<footer>
<p>
API graciously provided by <a href="http://developer.github.com/">github.</a>
This project is in no way affiliated to or endorsed by github.
</p>
<p>
Repository: <a href="https://github.com/waawal/watched">waawal/watched</a>
</p>
</footer>
</body>
</html>