4 <title><%= @page_title || "VotingBooth" %></title>
5 <%= stylesheet_link_tag "vb", :media => "all" %>
6 <% #engine_stylesheet 'login_engine' %>
8 <%= javascript_include_tag "prototype", "effects", "dragdrop", "controls" %>
13 <h3><%= @page_title %></h3>
15 <h3>Voting Booth<br />
16 <font size="-1">Preferential Voting on the Web</font></h3>
20 <% if session[:user] %>
21 Welcome <strong><%= session[:user].login.capitalize %></strong>
23 <%= link_to("Login",:controller => "account", :action => "login") %>/<%= link_to("Sign up", :controller => "account", :action => "signup")%>
26 <%= link_to("Home", :controller => "site", :action => "index")%> |
27 <%= link_to("Browse", :controller => "site", :action => "index")%> |
29 <% if session[:user] %>
30 <%= link_to("Logout", :controller => "account", :action => "logout") %> |
33 <%= link_to("Help/About", :controller => "site", :action => "about") %>
37 <% if @flash[:notice]%>
38 <div id="notice"><%= @flash[:notice] %></div>
42 <%= @content_for_layout %>
46 <div id="footer">(C) 2006 |
47 <%= link_to "MIT Media Lab", "http://www.media.mit.edu" %> and
48 <a href="http://mako.cc">Benjamin Mako Hill</a>