2011-05-09 10:49:57 +00:00
|
|
|
<!DOCTYPE HTML>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
2011-05-13 01:08:42 +00:00
|
|
|
<title><%= @title || 'R4 rescue title' %></title>
|
2011-05-09 10:49:57 +00:00
|
|
|
<link rel="shortcut icon" href="/favicon.ico">
|
|
|
|
<%= yield :page_specific_link %>
|
|
|
|
<%= stylesheet_link_tag "easy", "main", "devise", "content", :media => "screen, projection" %>
|
|
|
|
<%= stylesheet_link_tag "easyprint", :media => "print" %>
|
2011-05-13 01:08:42 +00:00
|
|
|
<%= javascript_include_tag "jquery", "jquery-ui", "rails", "easy", :cache => 'all' %>
|
|
|
|
<%= javascript_include_tag "application", :cache => 'all' %>
|
2011-05-09 10:49:57 +00:00
|
|
|
<%= yield :page_specific_javascript %>
|
|
|
|
<!--[if IE]>
|
|
|
|
<%= stylesheet_link_tag "ie", :media => "screen, projection" %>
|
|
|
|
<![endif]-->
|
|
|
|
<%= yield :page_specific_css %>
|
|
|
|
<%= csrf_meta_tag %>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="header">
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="content" class="content">
|
|
|
|
<div id="sidebar" style='float: left;'><%= yield :sidebar %></div>
|
|
|
|
<div id="main" style='float: left;'><%= yield %></div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="footer">
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|