Guest User

Untitled

a guest
Jul 19th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1.  
  2. class WebApplication < Sinatra::Base
  3.  
  4. configure do
  5. set :public, './public'
  6. set :haml, :format => :html5
  7. end
  8.  
  9. get '/' do
  10. File.read(File.join('public', 'index.html'))
  11. end
  12.  
  13. get '/blog/index' do
  14. haml :'root/index', :title => "Cre8ive Thought"
  15. end
  16.  
  17. end
Add Comment
Please, Sign In to add comment