-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathindex.html
39 lines (34 loc) · 2.41 KB
/
index.html
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
---
layout: master
title: Michael Bleigh on the Web
---
<div class='home_box' id='home_left'>
<h2><a href='http://feeds2.feedburner.com/mbleigh' class='float-right'><img src='/images/subscribe-icon.gif' alt='Subscribe'/></a> Latest Blog Post (<a href='/blog.html'>More</a>)</h2>
<div class='post'>
<h1><a href='{{site.posts.first.url}}'>{{site.posts.first.title}}</a></h1>
<div class='body'>{{ site.posts.first.content }}</div>
<a href='{{site.posts.first.url}}#disqus_thread'>Comments</a>
</div>
</div>
<div class='home_box' id='home_right'>
<h2>Open Source</h2>
<div id='github-projects'>
<div class="repo"> <h3><a href="http://github.com/mbleigh/acts-as-taggable-on">acts-as-taggable-on</a></h3> <span class="desc">A tagging plugin for Rails applications that allows for custom tagging along dynamic contexts.</span></div><div class="repo"> <h3><a href="http://github.com/mbleigh/subdomain-fu">subdomain-fu</a></h3> <span class="desc">A new plugin approach to attempting to solve the usage of subdomains in linking and routing in Rails projects.</span></div><div class="repo"> <h3><a href="http://github.com/mbleigh/seed-fu">seed-fu</a></h3> <span class="desc">Advanced seed data handling for Rails, combining the best practices of several methods together.</span></div><div class="repo"> <h3><a href="http://github.com/mbleigh/uberkit">uberkit</a></h3> <span class="desc">The UberKit is a Rails plugin with a set of UI tools to ease common development.</span></div><div class="repo"> <h3><a href="http://github.com/mbleigh/mash">mash</a></h3> <span class="desc">Mash is a Hash with the ability to read, write, and test for the presence of arbitrary attributes using method calls.</span></div><div class="repo"> <h3><a href="http://github.com/mbleigh/fetches">fetches</a></h3> <span class="desc">A Rails plugin to simplify the fetching and memoization of records for parameter-based finds.</span></div>
</div>
</div>
<script type="text/javascript" charset="utf-8">
$.githubUser('mbleigh', function(data) {
$('#github-projects').html('');
var repos = data.user.repositories;
repos.sort(function(a,b) {
return b.watchers - a.watchers;
});
$(repos.slice(0,6)).each(function() {
$('#github-projects').append("\
<div class='repo'>\
<h3><a href='" + this.url + "'>" + this.name + "</a></h3>\
<span class='desc'>"+this.description+"</span>\
</div>");
});
});
</script>