-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·51 lines (46 loc) · 1.73 KB
/
Copy pathindex.html
File metadata and controls
executable file
·51 lines (46 loc) · 1.73 KB
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
<!--
King Open Source site GitHub homepage
Copyright (C) king.com Ltd 2015
https://github.com/king/king.github.io
Author: Josep F. Barranco
License: Apache 2.0, https://raw.github.com/king/king.github.io/master/LICENSE-APACHE
-->
<!DOCTYPE html>
<html>
<head>
<title>King Open Source</title>
<link rel="stylesheet" type="text/css" href="css/reset.css">
<link rel="stylesheet" type="text/css" href="css/king_github_style.css">
<link rel="stylesheet" type="text/css" href="css/octicons/octicons.css">
<link href="images/favicon.ico" rel="shortcut icon" type="image/x-icon">
<script type="text/javascript" src="js/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="js/strftime.js"></script>
<script type="text/javascript"src="js/repos.js"></script>
<script>
$( document ).ready(function() {
addKingRepos();
getNumMembers();
});
</script>
</head>
<body>
<header>
<div id="main">
<div id="logo"></div>
</div>
<div class="reposAndMembers">
<a href="https://github.com/king/repositories"><span class="mega-octicon octicon-mark-github"></span><span id="num-repos">...</span></a>
<a href="https://github.com/king?tab=members"><span class="mega-octicon octicon-organization"></span><span id="num-members">...</span></a>
</div>
<div id="statistics" class="">
<div id="recent-repo" class="">
<span>Recently updated repos:</span>
<ol id="recent-repo-list"></ol>
</div>
</div>
</header>
<div id="wrapper" class="grid clearfix">
<ol id="repos" class="clearfix"></ol>
</div>
</body>
</html>