Guest User

Untitled

a guest
Jun 13th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. require 'rubygems'
  2. require 'sinatra'
  3. require 'haml'
  4.  
  5. get '/' do
  6. haml :index, :layout => false #=> Don't use layout.haml.
  7. end
  8.  
  9. get '/about' do
  10. haml :about, :layout => 'layout2' #=> Use layout2.haml.
  11. end
Add Comment
Please, Sign In to add comment