public
Fork of heipei/github-commit-badge
Description: This is a banner which can display the latest commit of a Github-repo on your website.
Homepage: http://github.com/heipei/github-commit-badge/tree/master
Clone URL: git://github.com/drnic/github-commit-badge.git
github-commit-badge / index.html
100644 34 lines (27 sloc) 0.8 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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Github-Banner</title>
</head>
<body>
 
 
<div id="github-commit-badge-container">
<script type="text/javascript">
var Badges = new Array();
Badges[0] = new Object;
Badges[0]["username"] = "heipei";
Badges[0]["repo"] = "github-commit-badge";
Badges[0]["branch"] = "master";
 
Badges[1] = new Object;
Badges[1]["username"] = "heipei";
Badges[1]["repo"] = "xmpp4r";
Badges[1]["branch"] = "master";
 
Badges[2] = new Object;
Badges[2]["username"] = "schacon";
Badges[2]["repo"] = "grit";
Badges[2]["branch"] = "master";
</script>
<script type="text/javascript" src="github-commit-badge.js"></script>
 
</div>
 
</body>
</html>