Skip to content

Instantly share code, notes, and snippets.

@clyfe
Created November 4, 2010 08:54
Show Gist options
  • Save clyfe/662245 to your computer and use it in GitHub Desktop.
Save clyfe/662245 to your computer and use it in GitHub Desktop.
sample sinatra app
require 'rubygems'
require 'sinatra'
get '/' do
haml :index
end
enable :inline_templates
enable :run
__END__
@@ layout
.page= yield
@@ index
.title Hello world!!!!!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment