2007-11-15 01:49:33 -05:00
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
|
|
<head>
|
2007-11-15 18:42:26 -05:00
|
|
|
<title><%= page_title -%></title>
|
2007-11-15 01:49:33 -05:00
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
|
|
|
<%= stylesheet_link_tag 'application', :media => 'all' %>
|
|
|
|
<%= javascript_include_tag :defaults %>
|
2008-02-03 15:16:53 -05:00
|
|
|
<%= javascript_include_tag 'control.modal.js' %>
|
|
|
|
<%= javascript_include_tag 'control.rating.js' %>
|
2007-11-15 01:49:33 -05:00
|
|
|
<script type="text/javascript">
|
2008-01-19 20:32:08 -05:00
|
|
|
<%= yield :script %>
|
2007-11-15 01:49:33 -05:00
|
|
|
</script>
|
2007-12-22 19:32:08 -05:00
|
|
|
<style type="text/css">
|
2008-01-19 20:32:08 -05:00
|
|
|
<%= yield :stylesheet %>
|
2007-12-22 19:32:08 -05:00
|
|
|
</style>
|
2008-02-03 04:27:09 -05:00
|
|
|
<%= yield :auto_discoveries %>
|
2007-11-15 01:49:33 -05:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<div id="container">
|
|
|
|
<% flash.keys.each do |key| -%>
|
|
|
|
<div id="<%= key -%>">
|
|
|
|
<%= flash[key] %>
|
|
|
|
</div>
|
|
|
|
<% end -%>
|
|
|
|
|
|
|
|
<div id="header">
|
2007-11-15 18:42:26 -05:00
|
|
|
<h1><%= content_title -%></h1>
|
2007-11-15 01:49:33 -05:00
|
|
|
<h2><%= secondary_title -%></h2>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="page">
|
|
|
|
<div id="content">
|
|
|
|
<%= yield %>
|
|
|
|
</div>
|
2007-12-22 19:32:08 -05:00
|
|
|
<% unless @hide_sidebar -%>
|
2007-11-15 01:49:33 -05:00
|
|
|
<div id="sidebar">
|
2007-11-15 19:57:44 -05:00
|
|
|
<%= link_to_unless_current 'Browse The Beer Wiki', pages_path -%><br />
|
|
|
|
<%= link_to_unless_current 'Browse Beers', beers_path -%><br />
|
2008-02-02 19:57:35 -05:00
|
|
|
<% if logged_in? -%><%= link_to_unless_current 'My Beer Experiences', experience_path(:id => session[:people_title_for_url]) -%><br /><% end %>
|
2008-01-07 00:46:43 -05:00
|
|
|
<%= link_to_unless_current 'Beverage Styles', styles_path -%><br />
|
2007-11-15 19:57:44 -05:00
|
|
|
<%= link_to_unless_current 'Browse Breweries', breweries_path -%><br />
|
2008-01-09 01:17:04 -05:00
|
|
|
<%= link_to_unless_current 'BarleySodas People', peoples_path -%><br />
|
2008-01-19 20:32:08 -05:00
|
|
|
<%= link_to_unless_current 'Gallery', galleries_path -%><br />
|
2008-01-09 00:16:10 -05:00
|
|
|
<% if has_permission_for_action?(:index, :roles) -%><%= link_to_unless_current 'Roles', roles_path -%><br /><% end -%>
|
2008-02-07 01:00:13 -05:00
|
|
|
<% unless logged_in? -%><%= link_to_unless_current 'Login', new_session_path -%><% else -%><%= link_to 'My Page', people_path(session[:people_title_for_url]) -%><br /><%= link_to "Logout #{session[:people_title]}", session_path(:id => session[:people_title]), :method => :delete -%><% end %>
|
2007-11-15 19:57:44 -05:00
|
|
|
<hr />
|
|
|
|
<%= yield :sidebar %>
|
2007-11-15 01:49:33 -05:00
|
|
|
</div>
|
2007-12-22 19:32:08 -05:00
|
|
|
<% end -%>
|
2007-11-15 01:49:33 -05:00
|
|
|
<br style="clear:both;" />
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="footer">
|
|
|
|
<hr />
|
2008-01-02 02:57:12 -05:00
|
|
|
<p><a href="http://www.penguincoder.org" title="Built by PenguinCoder">PenguinCoder</a> | <a href="http://www.quotedprintable.com/pages/scribbish" title="Scribbish">Scribbish</a> | <a href="http://collaboa.barleysodas.com" title="BarleySodas Development">BarleySodas Development</a></p>
|
2007-11-15 01:49:33 -05:00
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
2008-01-31 23:46:06 -05:00
|
|
|
|
2007-11-15 18:42:26 -05:00
|
|
|
</body>
|