Github Pinboard

Show off your contributors in style!

Try it


camping/camping

hpricot/hpricot

fogus/potion

How To Use

  1. Include the library:
        <script src="http://copypastel.github.com/github-pinboard/lib/github-pinboard.js"></script>
      
  2. Create a container to hold the pinboard:
        <div id="github-pinboard"></div>
      
  3. Create the pinboard:
        <script>
            /*  Only the user and repo names are needed to display
            *  a pinboard. containerId defaults to "github-pinboard".
            */
            var user = "joyent", repo = "node", containerId = "github-pinboard"; 
    
            window.onload = function() {
              new GithubPinboard(user, repo, containerId); 
            }
        </script>
      
  4. Style to your liking:
        <style>
          .github-pinboard-pin {
            background: black;
            border-radius: 20px;
          }
        </style>
        

Our Own Contributors