public
Description: This is a banner which can display the latest commit of a Github-repo on your website.
Homepage: http://heipei.github.com/github-commit-badge/
Clone URL: git://github.com/heipei/github-commit-badge.git
heipei (author)
Sat Jan 24 13:51:11 -0800 2009
commit  0659ea5e8ec578d1733498ca40d8b6d8ea9c0775
tree    0f0b5d3a471c7693b7ebc89133a34875ead1616c
parent  5a66ac4d532ad874ce5fe1de9e3b0a78f96eb1f9
github-commit-badge / index.html
100644 33 lines (26 sloc) 0.765 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
<!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";
</script>
<script type="text/javascript" src="github-commit-badge.js"></script>
 
</div>
 
</body>
</html>