4 <title><%= @page_title || "VotingBooth" %></title>
5 <%= stylesheet_link_tag "vb", :media => "all" %>
6 <%= javascript_include_tag "prototype", "effects", "dragdrop", "controls" %>
11 <h3><%= @page_title %></h3>
13 <h3>Voting Booth<br />
14 <font size="-1">Preferential Voting on the Web</font></h3>
18 <% if session[:user] %>
19 Welcome <strong><%= session[:user].login.capitalize %></strong>
21 <%= link_to("Login",:controller => "account", :action => "login") %>/<%= link_to("Sign up", :controller => "account", :action => "signup")%>
24 <%= link_to("Home", :controller => "site", :action => "index")%> |
25 <%= link_to("Browse", :controller => "site", :action => "index")%> |
27 <% if session[:user] %>
28 <%= link_to("Logout", :controller => "account", :action => "logout") %> |
31 <%= link_to("Help/About", :controller => "site", :action => "about") %>
35 <% if @flash[:notice]%>
36 <div id="notice"><%= @flash[:notice] %></div>
40 <%= @content_for_layout %>
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>