Skip to content

Instantly share code, notes, and snippets.

@mostlyfine
Created December 10, 2010 02:39
Show Gist options
  • Save mostlyfine/735678 to your computer and use it in GitHub Desktop.
Save mostlyfine/735678 to your computer and use it in GitHub Desktop.
slim on sinatra
require 'rubygems'
require 'sinatra'
require 'slim'
module Sinatra
module Templates
def slim(template, options={}, locals={})
render :slim, template, options, locals
end
end
end
get '/' do
slim :index
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment