Sha256: fe3f13bca896c24288d366e477034a4a394409f25ad825c86a77c76044452abb

Contents?: true

Size: 1.35 KB

Versions: 1

Compression:

Stored size: 1.35 KB

Contents

<!-- basic layout - feel free to replace with a more elaborate one -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <title>Spree</title>
    <%= stylesheet_link_tag 'application' %>
    <%= javascript_include_tag :defaults %>
  </head>
  <body>
    <div id="main">
			<table id="main-table" border='1'>
				<tr>
					<td colspan="2">
						<table width="100%">
							<tr>
								<td width="140px">
                  <%= image_tag 'spree.jpg' %>									
								</td>
								<td valign="top">
								  <h1>Welcome To The Sample Store</h1>
							  </td>
								<td align="right" valign="top">
									<%= render :partial => 'shared/store_menu' %>
								</td>
							</tr>
						</table>
					</td>
				</tr>
	      <% if flash[:notice] %>
	        <tr><td colspan="2"><div id="flash-notice"><%= flash[:notice] %></div></td></tr>
	      <% end %>
	      <% if flash[:error] %>
	        <tr><td colspan="2"><div id="flash-errors"><%= flash[:error] %></div></td></tr>
	      <% end %>
				<tr>
					<td id="shop-by-col" valign="top">
						<!--todo: add the category info here -->
					</td>
					<td>
						<div id="main-content">
						  <%=@content_for_layout %> 	
						</div>
					</td>
				</tr>
			</table>
    </div>
  </body>
</html>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
spree-0.0.8 starter-app/app/views/layouts/application.rhtml