orbit4-5/app/views/layouts/structure.html.erb

25 lines
661 B
Plaintext
Raw Normal View History

2014-04-08 10:46:27 +00:00
<!DOCTYPE HTML>
<html class="<%= @html_class %>">
2014-04-08 10:46:27 +00:00
<head>
<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" %>
<%= yield :page_specific_css %>
2014-04-08 10:46:27 +00:00
<%= render 'shared/ie_html5_fix' %>
<%= javascript_include_tag "structure" %>
<%= yield :page_specific_javascript %>
2014-04-08 10:46:27 +00:00
<%= csrf_meta_tag %>
</head>
<body id="sideset">
<%= render_orbit_bar unless @no_orbit_bar %>
<%= 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>