Guest User

Untitled

a guest
Jun 23rd, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. ## app.rb
  2. require 'rubygems'
  3. require 'sinatra'
  4. require 'haml'
  5. require 'sass'
  6.  
  7. get '/css/main.css' do
  8. headers 'Content-Type' => 'text/css; charset=utf-8'
  9. sass :main
  10. end
  11.  
  12. get '/' do
  13. haml :index
  14. end
  15.  
  16. ## views/layout.haml
  17. !!! Strict
  18. %html
  19. %head
  20. %link{:rel => 'stylesheet', :href => '/css/main.css', :type => 'text/css'}
  21. %title example
  22. %body
  23. = yield
  24.  
  25. ## views/index.haml
  26. #container
  27. #left
  28. %p Text on the left!
  29. #right
  30. %p Text on the right!
  31. .clear
  32.  
  33. ## views/main.sass
  34. .clear
  35. :clear both
  36.  
  37. #container
  38. :width 500px
  39. #left
  40. :background blue
  41. :width 225px
  42. :margin-right 25px
  43. :float left
  44. #right
  45. :background red
  46. :width 225px
  47. :margin-left 25px
  48. :float left
Add Comment
Please, Sign In to add comment