End chapter 8
[depot.git] / app / views / layouts / store.html.erb
1
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
3 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" >
4 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5 <head>
6 <title>Neil's Whimsical Online Store</title>
7 <%= stylesheet_link_tag "depot" , :media => "all" %>
8 </head>
9 <body id="store">
10 <div id="banner">
11 <%= image_tag("logo.png" ) %>
12 <%= @page_title || "Neil's Whimisical Store" %>
13 </div>
14 <div id="columns">
15 <div id="side">
16 <a href="http://www....">Home</a><br />
17 <a href="http://www..../faq">Questions</a><br />
18 <a href="http://www..../news">News</a><br />
19 <a href="http://www..../contact">Contact</a><br />
20 </div>
21 <div id="main">
22 <% if flash[:notice] -%>
23 <div id="notice"><%= flash[:notice] %></div>
24 <% end -%>
25
26 <%= yield :layout %>
27 </div>
28 </div>
29 </body>
30 </html>