End chapter 10
[depot.git] / app / views / layouts / store.html.erb
index 7bd5325d42555b9ebe672c2d333b1960c732ffba..63c7dd919a1df2a531a3c8bec20615df861387bd 100644 (file)
@@ -5,6 +5,7 @@
   <head>
     <title>Neil's Whimsical Online Store</title>
     <%= stylesheet_link_tag "depot" , :media => "all" %>
+    <%= javascript_include_tag :defaults %>
   </head>
   <body id="store">
     <div id="banner">
     </div>
     <div id="columns">
       <div id="side">
-        <a href="http://www....">Home</a><br />
+        <% hidden_div_if(@cart.items.empty?, :id => "cart") do %>
+            <%= render(:partial => "cart" , :object => @cart) %>
+        <% end %>
+        <a href="/">Home</a><br />
         <a href="http://www..../faq">Questions</a><br />
         <a href="http://www..../news">News</a><br />
         <a href="http://www..../contact">Contact</a><br />
       </div>
       <div id="main">
+        <% if flash[:notice] -%>
+            <div id="notice"><%= flash[:notice] %></div>
+        <% end -%>
+        
         <%= yield :layout %>
       </div>
     </div>