forked from saurabh/orbit4-5
25 lines
679 B
Plaintext
25 lines
679 B
Plaintext
<!DOCTYPE HTML>
|
|
<html class="<%= @html_class %>">
|
|
<head>
|
|
<title><%= current_site.title %> | <%= t('site.settings') %></title>
|
|
<%= render 'shared/meta' %>
|
|
<%= render 'shared/google_font' %>
|
|
<%= stylesheet_link_tag "structure" %>
|
|
<%= yield :page_specific_css %>
|
|
<%= render 'shared/ie_html5_fix' %>
|
|
<%= javascript_include_tag "structure" %>
|
|
<%= yield :page_specific_javascript %>
|
|
<%= csrf_meta_tag %>
|
|
</head>
|
|
<body id="sideset">
|
|
<%= render 'layouts/orbit_bar_backend' unless @no_orbit_bar %>
|
|
<%= render 'shared/side_bar' unless @no_side_bar %>
|
|
<section id="main-wrap">
|
|
<div class="wrap-inner">
|
|
<%= yield %>
|
|
</div>
|
|
</section>
|
|
</body>
|
|
</html>
|
|
|