30 lines
961 B
Plaintext
Executable file
30 lines
961 B
Plaintext
Executable file
<!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>
|
|
<title><%= t(:mailr) %></title>
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
|
|
|
<%=stylesheet_link_tag current_theme_stylesheet_path('base') %>
|
|
<%=stylesheet_link_tag current_theme_stylesheet_path('style') %>
|
|
<%=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="container">
|
|
<div id="wrapper" class="wat-cf">
|
|
<div id="sidebar">
|
|
<div id="logo"><%= yield :logo %></div>
|
|
<div id="sidebar"><%= yield :sidebar %></div>
|
|
</div>
|
|
<div id="main"><%= yield %></div>
|
|
<br class="clear"/>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|