19 lines
798 B
Plaintext
19 lines
798 B
Plaintext
<!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><%=@title%></title>
|
|
<meta http-equiv="content-type" content="text/html; charset=<%= @charset %>" />
|
|
<script type="text/javascript" src="/javascripts/global.js"></script>
|
|
<link rel="stylesheet" href="/stylesheets/admin.css" type="text/css" media="screen" />
|
|
<link rel="stylesheet" href="/stylesheets/tabs.css" type="text/css" media="screen" />
|
|
<link rel="stylesheet" href="/stylesheets/mailr.css" type="text/css" media="screen" />
|
|
<%=@additional_scripts%>
|
|
</head>
|
|
<body id="bodyID" onload="<%=@onload_function%>">
|
|
<%= @content_for_layout %>
|
|
</body>
|
|
</html>
|
|
|
|
|