application.html.erb 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Pragprog Books Online Store</title>
  5. <%= stylesheet_link_tag "scaffold" %>
  6. <%= stylesheet_link_tag "depot", :media => "all" %>
  7. <%= javascript_include_tag :defaults %>
  8. <%= csrf_meta_tag %>
  9. </head>
  10. <body id="store">
  11. <div id="banner">
  12. <%= image_tag("logo.png") %>
  13. <%= @page_title || "Pragmatic Bookshelf" %>
  14. </div>
  15. <div id="columns">
  16. <div id="side">
  17. <% if @cart %>
  18. <%= hidden_div_if(@cart.line_items.empty?, :id => "cart") do %>
  19. <%= render @cart %>
  20. <% end %>
  21. <% end %>
  22. <a href="http://www....">Home</a><br />
  23. <a href="http://www..../faq">Questions</a><br />
  24. <a href="http://www..../news">News</a><br />
  25. <a href="http://www..../contact">Contact</a><br />
  26. <% if session[:user_id] %>
  27. <br />
  28. <%= link_to 'Orders', orders_path %><br />
  29. <%= link_to 'Products', products_path %><br />
  30. <%= link_to 'Users', users_path %><br />
  31. <br />
  32. <%= button_to 'Logout', logout_path, :method => :delete %>
  33. <% end %>
  34. </div>
  35. <div id="main">
  36. <%= yield %>
  37. </div>
  38. </div>
  39. </body>
  40. </html>