working quickvote support created
[selectricity] / app / views / layouts / vb.rhtml
1 <% %>
2 <html>
3     <head>
4         <title><%= @page_title || "HyperChad" %></title>
5         <%= stylesheet_link_tag "vb", :media => "all" %>
6         <% #engine_stylesheet 'login_engine' %>
7  
8         <%= javascript_include_tag "prototype", "effects", "dragdrop", "controls" %>
9     </head>
10     <body>
11         <div id="top">
12             <% if @page_title %>
13               <h3><%= @page_title %></h3>  
14             <% else %>
15               <h3>HyperChad<br />
16               <font size="-1">Voting Machinery for the Masses</font></h3>
17            <% end %>
18
19            <div id="links">
20              <% if session[:user] %>
21                Welcome <strong><%= session[:user].login.capitalize %></strong>
22              <% else %>
23                <%= link_to("Login",:controller => "user", :action => "login")
24                  %>/<%= link_to("Sign up", :controller => "user", :action => "signup")%>
25              <% end %> |
26           
27              <% if session[:user] %>
28                <%= link_to("Logout", :controller => "user", :action => "logout") %>  |
29              <% end %>
30              
31              <%= link_to("Help/About", :controller => "site", :action => "about") %>
32            </div>
33         </div>
34         
35         <% if @flash[:notice]%>
36           <div id="notice"><%= @flash[:notice] %></div>
37         <% end%>
38
39         <div id="main">
40           <%= @content_for_layout %>
41         </div>
42
43         <div id="footer">
44           <hr />
45           Copyleft 2006 |
46           <%= link_to "MIT Media Lab", "http://www.media.mit.edu" %> and
47           <a href="http://mako.cc">Benjamin Mako Hill</a>
48         </div>
49
50     </body>
51 </html>

Benjamin Mako Hill || Want to submit a patch?