1161c7fe04317f47d16fb76988bde1212a7927c6
[selectricity-live] / app / views / layouts / vb.rhtml
1 <% %>
2 <html>
3     <head>
4         <title><%= @page_title || "VotingBooth" %></title>
5         <%= stylesheet_link_tag "vb", :media => "all" %>
6         <%= javascript_include_tag "prototype", "effects", "dragdrop", "controls" %>
7     </head>
8     <body>
9         <div id="top">
10             <% if @page_title %>
11               <h3><%= @page_title %></h3>  
12             <% else %>
13               <h3>Voting Booth<br />
14               <font size="-1">Preferential Voting on the Web</font></h3>
15            <% end %>
16
17            <div id="links">
18              <% if session[:user] %>
19                Welcome <strong><%= session[:user].login.capitalize %></strong>
20              <% else %>
21                <%= link_to("Login",:controller => "account", :action => "login") %>/<%= link_to("Sign up", :controller => "account", :action => "signup")%>
22              <% end %> |
23           
24              <%= link_to("Home", :controller => "site", :action => "index")%> |
25              <%= link_to("Browse", :controller => "site", :action => "index")%> |
26
27              <% if session[:user] %>
28                <%= link_to("Logout", :controller => "account", :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         <hr />
44         <div id="footer">(C) 2006 |
45           <%= link_to "MIT Media Lab", "http://www.media.mit.edu" %> and
46           <a href="http://mako.cc">Benjamin Mako Hill</a>
47         </div>
48
49     </body>
50 </html>

Benjamin Mako Hill || Want to submit a patch?