public
Description: A little JS badge for showing off your latest Github activity on your site.
Homepage: http://log.lachstock.com.au/past/2008/10/29/pimping-your-github-commits-js/
Clone URL: git://github.com/lachlanhardy/github-activity-badge.git
github-activity-badge / index.html
100644 39 lines (32 sloc) 1.365 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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en-au">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
 
<title>Lachlan Hardy presents: Github Activity Badge</title>
 
<link rel="stylesheet" href="inc/css/screen.css" media="screen, projection" type="text/css">
 
<!-- Hot Google jQuery hosting - http://code.google.com/apis/ajaxlibs/ -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js" type="text/javascript"></script>
  <!-- // Google's jQuery hosting -->
  
  <!-- John Resig's sexy little Pretty Date http://ejohn.org/projects/javascript-pretty-date -->
  <script src="inc/js/pretty-date.js" type="text/javascript"></script>
  <!-- // Pretty Date -->
  
  <!-- Adding Github commits -->
  <script src="inc/js/github-activity.js" type="text/javascript"></script>
  <!-- // Github commits -->
  
  <!-- Calling JS fun -->
  <script src="inc/js/go.js" type="text/javascript"></script>
  <!-- // Calling JS fun -->
 
</head>
<body>
  <div id="header">
    <h1>Github Activity Badge</h1>
  </div> <!-- // #header -->
  <div id="page">
      <div id="github">
        <h2>I use Github</h2>
        <p>Fork <a href="http://github.com/lachlanhardy" rel="me">my code</a>!</p>
      </div> <!-- #github -->
  </div> <!-- // #page -->
</body>
</html>