Created
March 8, 2011 14:01
-
-
Save edzhelyov/860283 to your computer and use it in GitHub Desktop.
Sinatra inline templates
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'haml' | |
get '/' do | |
haml :overview | |
end | |
__END__ | |
@@ overview | |
%html | |
%head | |
%title Overview template | |
%body | |
%h2 Current body |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'sinatra' | |
require File.expand_path('../app', __FILE__) | |
run Sinatra::Application |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment