38 lines
1.1 KiB
Plaintext
38 lines
1.1 KiB
Plaintext
|
<!DOCTYPE HTML>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title><%= @title || APP_CONFIG['orbit'] %></title>
|
||
|
<%= render 'layouts/meta' %>
|
||
|
<%= render 'layouts/google_font' %>
|
||
|
<%= stylesheet_link_tag "back_end" %>
|
||
|
<%= stylesheet_link_tag params[:controller] rescue nil %>
|
||
|
<%= render 'layouts/ie_html5_fix' %>
|
||
|
<%= javascript_include_tag "back_end" %>
|
||
|
<%= javascript_include_tag params[:controller] rescue nil %>
|
||
|
<%= yield :page_specific_css %>
|
||
|
<%= yield :page_specific_javascript %>
|
||
|
<%= csrf_meta_tag %>
|
||
|
</head>
|
||
|
<body id="dashboards">
|
||
|
<%= render 'layouts/orbit_bar' unless @no_orbit_bar %>
|
||
|
<%#= render 'layouts/side_bar' unless @no_side_bar %>
|
||
|
<nav id="sidebar">
|
||
|
<h2 class="position"><a href="#"><i class="icons-gauge"></i></a></h2>
|
||
|
<div id="sidebar-menu">
|
||
|
<div class="scroller">
|
||
|
</div>
|
||
|
</div>
|
||
|
</nav>
|
||
|
<section id="main-wrap">
|
||
|
<div class="wrap-inner">
|
||
|
<%= yield %>
|
||
|
<div id="view-page" class="nano" style="display:none">
|
||
|
<div class="content">
|
||
|
</div>
|
||
|
</div>
|
||
|
<%= javascript_include_tag "lib/jquery.pageslide.js" %>
|
||
|
</div>
|
||
|
</section>
|
||
|
</body>
|
||
|
</html>
|