1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 <html xmlns="http://www.w3.org/1999/xhtml">
4 <title><%= @page_title || "Selectricity" %></title>
5 <%= stylesheet_link_tag "common", :media => "all" %>
6 <%= stylesheet_link_tag "main", :media => "all" %>
7 <%= stylesheet_link_tag *(@stylesheets) %>
8 <%= stylesheet_link_tag "ie6hacks", :media => "all" if request.user_agent =~ /MSIE 6/ %>
9 <%= javascript_include_tag "prototype", "effects", "dragdrop", "controls" %>
13 <div id="page-wrapper">
16 <%= link_to "<h1>Selectricity</h1>",
17 :controller => 'site', :action => 'index' %>
19 <div id="left-side-content">
20 <% if flash[:notice]%>
21 <div id="notice"><%= flash[:notice] %></div>
24 <%= @sidebar_content %>
32 <% if session[:user] %>
33 <%= link_to User.find(session[:user]).login.capitalize,
34 :controller => "account",
35 :action => "summary", :id => session[:user][:id] %>
36 <%= link_to "logout", :controller => "account",
37 :action => "logout" %>
39 <%= link_to("login", :controller => "account", :action => "login")
40 %>/<%= link_to("sign up", :controller => "account", :action => "signup")%>
45 <%= link_to("help/about", :controller => "site", :action => "about") %>
47 </div> <!-- end of top-bar -->
50 <%= @content_for_layout %>
53 </div> <!-- end of right-side -->
54 <div class="clear-div"></div>
55 <%= render_partial 'layouts/footer' %>