application.html.erb 770 B

12345678910111213141516171819202122232425262728293031
  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. <div id="cart">
  18. <%= render @cart %>
  19. </div>
  20. <a href="http://www....">Home</a><br />
  21. <a href="http://www..../faq">Questions</a><br />
  22. <a href="http://www..../news">News</a><br />
  23. <a href="http://www..../contact">Contact</a><br />
  24. </div>
  25. <div id="main">
  26. <%= yield %>
  27. </div>
  28. </div>
  29. </body>
  30. </html>