Skip to content

Instantly share code, notes, and snippets.

@ethnt
Created October 1, 2010 19:34
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ethnt/606720 to your computer and use it in GitHub Desktop.
Save ethnt/606720 to your computer and use it in GitHub Desktop.
require 'rubygems'
require 'sinatra'
require 'haml'
get '/' do
haml :index, :layout => false #=> Don't use layout.haml.
end
get '/about' do
haml :about, :layout => 'layout2' #=> Use layout2.haml.
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment