2014-04-08 10:46:27 +00:00
|
|
|
<!DOCTYPE HTML>
|
2014-04-30 10:57:09 +00:00
|
|
|
<html class="<%= @html_class %>">
|
2014-04-08 10:46:27 +00:00
|
|
|
<head>
|
2014-04-09 10:30:13 +00:00
|
|
|
<title><%= current_site.title %> | <%= t('site.settings') %></title>
|
2014-04-08 10:46:27 +00:00
|
|
|
<%= render 'shared/meta' %>
|
|
|
|
<%= render 'shared/google_font' %>
|
|
|
|
<%= stylesheet_link_tag "structure" %>
|
2014-04-30 10:57:09 +00:00
|
|
|
<%= yield :page_specific_css %>
|
2014-04-08 10:46:27 +00:00
|
|
|
<%= render 'shared/ie_html5_fix' %>
|
2014-04-11 11:38:56 +00:00
|
|
|
<%= javascript_include_tag "structure" %>
|
|
|
|
<%= yield :page_specific_javascript %>
|
2014-04-08 10:46:27 +00:00
|
|
|
<%= csrf_meta_tag %>
|
|
|
|
</head>
|
|
|
|
<body id="sideset">
|
2014-07-25 12:05:06 +00:00
|
|
|
<%= render_orbit_bar unless @no_orbit_bar %>
|
2014-04-30 10:57:09 +00:00
|
|
|
<%= render 'shared/side_bar' unless @no_side_bar %>
|
2014-04-08 10:46:27 +00:00
|
|
|
<section id="main-wrap">
|
|
|
|
<div class="wrap-inner">
|
|
|
|
<%= yield %>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</body>
|
|
|
|
</html>
|
2014-04-09 10:30:13 +00:00
|
|
|
|