GeoRSS aggregator and Layar augmented reality server
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

application.html.haml 584 B

vor 12 Jahren
vor 12 Jahren
123456789101112131415161718192021222324252627282930
  1. !!!5
  2. %html
  3. %head
  4. %title Apollo
  5. = javascript_include_tag "application"
  6. = stylesheet_link_tag "application"
  7. = csrf_meta_tag
  8. %body
  9. - if notice
  10. %p#notice= notice
  11. - if alert
  12. %p#alert= alert
  13. = link_to(image_tag("TAL_logo_blue-h100.png", :size => "275x100", :alt => "Talk About Local logo"), :root, :class => "logo")
  14. #userbar
  15. - if current_user
  16. Logged in as
  17. = current_user.email
  18. = link_to "Log out", logout_path
  19. - else
  20. -#
  21. = link_to "Log in", login_path
  22. = yield