31 lines
937 B
Plaintext
31 lines
937 B
Plaintext
|
<!DOCTYPE HTML>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||
|
<title><%= @title %></title>
|
||
|
<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" %>
|
||
|
<%= javascript_include_tag "jquery", "jquery-ui", "rails", "easy", "application", :cache => 'all' %>
|
||
|
<%= 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>
|