2013-07-02 08:46:44 +00:00
|
|
|
<!DOCTYPE HTML>
|
|
|
|
<html>
|
|
|
|
<head>
|
2013-07-22 08:31:44 +00:00
|
|
|
<title><%= @title || t('site.settings') || APP_CONFIG['orbit'] %></title>
|
2013-07-02 08:46:44 +00:00
|
|
|
<%= render 'layouts/meta' %>
|
|
|
|
<%= render 'layouts/google_font' %>
|
|
|
|
<%= stylesheet_link_tag "structure" %>
|
|
|
|
<%= render 'layouts/ie_html5_fix' %>
|
|
|
|
<%= javascript_include_tag "structure" %>
|
|
|
|
<%= csrf_meta_tag %>
|
|
|
|
</head>
|
2013-07-22 08:31:44 +00:00
|
|
|
<body id="sideset">
|
2013-07-02 08:46:44 +00:00
|
|
|
<%= render 'layouts/orbit_bar' unless @no_orbit_bar %>
|
2013-07-29 10:46:38 +00:00
|
|
|
<%= render 'admin/items/site_bar' unless @side_bar %>
|
2013-07-22 08:31:44 +00:00
|
|
|
<section id="main-wrap">
|
|
|
|
<div class="wrap-inner">
|
2013-07-29 10:46:38 +00:00
|
|
|
<% unless @no_header %>
|
|
|
|
<div id="filter" class="topnav clearfix">
|
|
|
|
<ul class="breadcrumb text-info pull-left">
|
|
|
|
<li><a href="/orbit_4.0.1/admin/dashboards/dashboards.shtml">Dashboard</a> <span class="divider">/</span></li>
|
|
|
|
<li class="active">All</li>
|
|
|
|
</ul>
|
|
|
|
<%= yield :right_nav %>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
2013-07-22 08:31:44 +00:00
|
|
|
<%= yield %>
|
|
|
|
</div>
|
|
|
|
</section>
|
2013-07-02 08:46:44 +00:00
|
|
|
</body>
|
|
|
|
</html>
|