Yet Another (not very) Static Blog Generator

The very first post on this blog was about how I wanted a completely static blog and how it'll be great and wonderful and boy howdy was it ever. Over 500 lines of rather dense perl plus almost 20 separate template files because the kind-of-mustache that I decided to implement can't handle inlined templates for loops so I have to do everything as partials.

Needless to say, it isn't very fun to work on. It mostly does what I want but adding new things is pretty painful, as is changing any of the templates. Yesterday I decided that I would see what a Sinatra port would look like. Why Sinatra? It's fun, that's why. Ruby and Sinatra make writing new webapps easy and fun.

Details

The new version is called bugsplat.rb. It's 200 lines of ruby, which is actually more than I wanted but there a lot of functionality packed in there. Here's the complete feature set:

  • Entries are written in Markdown and checked into the app repo
  • Entries have a MIME-style header
  • Entries can have a --fold-- marker that specifies which content should be on the index page
  • Supports blog posts and static entries that can optionally be linked from the side navigation
  • Reads all entries into memory at startup
  • Uses ERB for templates
  • Caches rendered pages in memory

The production site is hosted on Heroku and uses a unicorn extremely similar to FivePad's setup without the background worker stuff.

Why not some other blog engine?

A while ago I tried porting to Jekyll but without heavy modification I wouldn't have been able to keep the URLs I've built up over the last year and a half. Also for some reason I couldn't wrap my head around liquid templates.

Wordpress or some other dynamic CMS? I could have done that, sure, but that would introduce other dependencies and I really like the emacs-centric workflow of writing markdown files and generating a site. A web-based CMS would have let me write from anywhere but then I'd have to write in the browser, which isn't my idea of fun.

Results

It's not a static site anymore but I think with the caching I have set up it's almost as fast as one. I could even transparently make it one by pre-rendering everything and stashing it in public using a rake task named assets:precompile that Heroku conveniently runs if it exists.

I don't think I'll do that, though. I like the flexibility that this setup gives me.

Re-using

I wouldn't recommend it. There's nothing that precludes someone else forking bugsplat.rb on github, deleting the entries, rewriting the templates, and running their own site, of course, but it wouldn't be trivial. If you actually want to use it on your own site, email me or leave a comment below and we'll work something out.

Posted in: Updates  

Tagged: Meta

Related Posts