You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
389 B

  1. - content_for :content do
  2. .container
  3. .logo-container
  4. %h1
  5. = link_to root_path do
  6. = image_tag 'logo.png'
  7. .form-container
  8. - if flash[:notice]
  9. .flash-message.notice
  10. %strong= flash[:notice]
  11. - if flash[:alert]
  12. .flash-message.alert
  13. %strong= flash[:alert]
  14. = yield
  15. = render template: "layouts/application"