2011-04-13 10:19:51 +00:00
|
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
2013-05-27 08:46:49 +00:00
|
|
|
<title><%= @title || APP_CONFIG['orbit'] %></title>
|
2013-09-13 07:42:52 +00:00
|
|
|
<link rel="shortcut icon" href="<%= asset_path "favicon.ico" %>">
|
2011-04-13 10:19:51 +00:00
|
|
|
<%= yield :page_specific_link %>
|
2013-05-27 08:46:49 +00:00
|
|
|
<%= stylesheet_link_tag "new_admin" %>
|
|
|
|
<%= javascript_include_tag "new_admin" %>
|
2011-04-13 10:19:51 +00:00
|
|
|
<%= csrf_meta_tag %>
|
|
|
|
</head>
|
2013-05-27 08:46:49 +00:00
|
|
|
<body class="folded">
|
|
|
|
<%= render 'layouts/orbit_bar' %>
|
2011-04-13 10:19:51 +00:00
|
|
|
<div id="container">
|
|
|
|
<div class="content">
|
|
|
|
<p class="notice"><%= notice %></p>
|
|
|
|
<p class="alert"><%= alert %></p>
|
|
|
|
<div class="main"><%= yield %></div>
|
|
|
|
<div class="secondary"><%= yield :secondary %></div>
|
|
|
|
<div class="tertiary"><%= yield :tertiary %></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<%= yield :page_specific_javascript %>
|
|
|
|
</body>
|
2011-07-12 08:00:57 +00:00
|
|
|
</html>
|