23 lines
537 B
Plaintext
23 lines
537 B
Plaintext
|
<!DOCTYPE HTML>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title><%= @title || APP_CONFIG['orbit'] %></title>
|
||
|
<%#= render 'layouts/meta' %>
|
||
|
<%#= render 'layouts/google_font' %>
|
||
|
<%= stylesheet_link_tag "back_end" %>
|
||
|
<%= yield :page_specific_css %>
|
||
|
<%= render 'layouts/ie_html5_fix' %>
|
||
|
<%= javascript_include_tag "back_end" %>
|
||
|
<%= yield :page_specific_javascript %>
|
||
|
<%= csrf_meta_tag %>
|
||
|
</head>
|
||
|
<body id="dashboards">
|
||
|
<section>
|
||
|
<div >
|
||
|
<!-- <div id="filter" class="topnav clearfix">
|
||
|
</div> -->
|
||
|
<%= yield %>
|
||
|
</section>
|
||
|
</body>
|
||
|
</html>
|