Lunr-based client search is wired up with a simple JSON index. It indexes titles, tags, and summaries across posts, art, and code.

index = lunr(function(){
  this.ref('url');
  this.field('title');
  this.field('summary');
  this.field('tags');
});