31 lines
1.1 KiB
Text
31 lines
1.1 KiB
Text
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<%= @htmllang %>" lang="<%= @htmllang %>">
|
|
<head>
|
|
<title><%= t :mailr %></title>
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
|
|
|
<%=stylesheet_link_tag current_theme_stylesheet_path('admin') %>
|
|
<%=stylesheet_link_tag current_theme_stylesheet_path('tabs') %>
|
|
<%=stylesheet_link_tag current_theme_stylesheet_path('mailr') %>
|
|
<%=javascript_include_tag current_theme_javascript_path('global') %>
|
|
<%=javascript_include_tag current_theme_javascript_path('webmail') %>
|
|
|
|
<%=javascript_include_tag :defaults %>
|
|
|
|
</head>
|
|
<body id="bodyID" onload="<%=@onload_function%>">
|
|
<div id="wholepage">
|
|
<div id="container">
|
|
<div id="sidebar_outer">
|
|
<div id="logo"></div>
|
|
<div id="sidebar">
|
|
<%= yield :sidebar %>
|
|
</div>
|
|
</div>
|
|
<div id="content"><%= yield %></div>
|
|
<br class="clear"/>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|