application.html.haml 728 B

12345678910111213141516171819202122232425262728
  1. !!!
  2. %html{:lang => "en"}
  3. %head
  4. %meta{:charset => "utf-8"}
  5. %meta{:content => "width=device-width, initial-scale=1.0", :name => "viewport"}
  6. %title= content_for?(:title) ? yield(:title) : "Discite"
  7. = favicon_link_tag
  8. = stylesheet_link_tag "application"
  9. = csrf_meta_tags
  10. %body
  11. = render 'shared/nav_bar'
  12. %section.main
  13. .row
  14. .small-12.large-12.columns
  15. - if notice
  16. .alert-box.notice
  17. = notice
  18. %a.close{href: "#"} ×
  19. - if alert
  20. .alert-box.alert
  21. =alert
  22. %a.close{href: "#"} ×
  23. = yield
  24. #root_footer
  25. = render 'shared/footer'
  26. = javascript_include_tag "application"