Sha256: aa7723d4f130379aa6e99447b41bddc07d3afe8ddd18576d1af80c752c88a893
Contents?: true
Size: 1.24 KB
Versions: 6
Compression:
Stored size: 1.24 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> <%= render :partial => 'shared/head'%> </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"> <ul id="nav-bar"> <div id="login-bar"> <%= render 'shared/login_bar' %> </div> <% if store_menu? %> <%= render 'shared/store_menu' %> <% end %> </ul> <%= logo %> </div> <div id="wrapper" class="container"> <% if @content_for_sidebar %> <div id="sidebar"> <%= yield :sidebar %> </div> <% end %> <div id="content"> <%= breadcrumbs(@taxon) if @taxon %> <% if flash[:notice] %> <div class="flash notice"><%= flash[: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
6 entries across 6 versions & 2 rubygems