Sha256: bea6e6a0a34f5833c58ce5a071ffc09bdd724f83086ba8889730a4f22c6368ab

Contents?: true

Size: 1.28 KB

Versions: 5

Compression:

Stored size: 1.28 KB

Contents

<!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>
<% hook :inside_head do %>
  <%= render :partial => 'shared/head'%>
<% end %>
</head>
<%
if @body_class.nil?
  if @content_for_sidebar
    @body_class = 'two-col'
  else
    @body_class = 'one-col'
  end
end
 %>
<body class="<%= @body_class %>"<%= %( id="#{@body_id}") if @body_id %>>
  <div id="header" class="container_bg">                                                          
    <div class="container">
		<div id="login-bar">          
      <ul id="nav-bar">
        <%= render 'shared/nav_bar' %>
      </ul>
    </div>
	<%= logo %>
	</div>
  </div>

  <div id="wrapper" class="container"> 
    <% if @content_for_sidebar %>
    <div id="sidebar">
      <% hook :sidebar do %>
        <%= yield :sidebar %>
      <% end %>
    </div>
    <% end %>
    
    <div id="content">
      <%= breadcrumbs(@taxon) if @taxon %>
      <% if self.notice %>
      <div class="flash notice"><%= self.notice %></div>
      <% end %>
      <% if flash[:error] %>
      <div class="flash errors"><%= flash[:error] %></div>
      <% end %>
      <%= yield %>
    </div>
    <%= render :partial => 'shared/footer'%>
  </div>

</body>
</html>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
spree-0.11.4 vendor/extensions/theme_default/app/views/layouts/spree_application.html.erb
spree-0.11.3 vendor/extensions/theme_default/app/views/layouts/spree_application.html.erb
spree-0.11.2 vendor/extensions/theme_default/app/views/layouts/spree_application.html.erb
spree-0.11.1 vendor/extensions/theme_default/app/views/layouts/spree_application.html.erb
spree-0.11.0 vendor/extensions/theme_default/app/views/layouts/spree_application.html.erb