mailr/themes/olive/views/layouts/application.html.erb

36 lines
1.2 KiB
Plaintext
Raw Normal View History

2011-06-26 21:37:50 +02: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" xml:lang="en" lang="en">
<head>
2011-07-29 20:05:47 +02:00
<title>
2011-09-09 22:10:25 +02:00
<%= t(:mailr,:scope=>:common) %>
2011-07-29 20:05:47 +02:00
<%= yield :title %>
</title>
2011-06-26 21:37:50 +02:00
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
2011-10-15 18:31:20 +02:00
<%=stylesheet_link_tag current_theme_stylesheet_path('olive') %>
<%=stylesheet_link_tag current_theme_stylesheet_path('calendar_olive') %>
2011-08-24 19:20:13 +02:00
<%=stylesheet_link_tag current_theme_stylesheet_path('jquery-ui-dialog') %>
<%=stylesheet_link_tag current_theme_stylesheet_path('jquery-ui-custom') %>
2011-06-26 21:37:50 +02:00
2011-08-24 19:20:13 +02:00
<%=javascript_include_tag current_theme_javascript_path('jquery') %>
<%=javascript_include_tag current_theme_javascript_path('jquery-ui') %>
<%=javascript_include_tag current_theme_javascript_path('rails') %>
<%=javascript_include_tag current_theme_javascript_path('application') %>
2011-06-26 21:37:50 +02:00
2011-09-03 16:25:19 +02:00
<link rel="icon" type="image/x-icon" href="/favicon.ico"/>
2011-06-26 21:37:50 +02:00
</head>
2011-07-29 20:05:47 +02:00
<body>
2011-06-26 21:37:50 +02:00
<div id="container">
<div id="sidebar">
2011-09-16 19:44:29 +02:00
<%= yield :sidebar %>
2011-06-26 21:37:50 +02:00
</div>
2011-07-29 20:05:47 +02:00
<div id="main">
2011-09-16 22:08:30 +02:00
<%= render :partial=>'layouts/flash', :object => flash %>
2011-07-29 20:05:47 +02:00
<%= yield %>
</div>
2011-06-26 21:37:50 +02:00
</div>
</body>
</html>