This repository has been archived on 2024-03-16. You can view files and clone it, but cannot push or open issues or pull requests.
orbit-4-1/app/views/layouts/structure.html.erb

33 lines
959 B
Plaintext

<!DOCTYPE HTML>
<html class="<%= @html_class %>">
<head>
<title><%= @title || t('site.settings') || APP_CONFIG['orbit'] %></title>
<%= render 'layouts/meta' %>
<%= render 'layouts/google_font' %>
<%= stylesheet_link_tag "structure" %>
<%= yield :page_specific_css %>
<%= render 'layouts/ie_html5_fix' %>
<%= javascript_include_tag "structure" %>
<%= yield :page_specific_javascript %>
<%= csrf_meta_tag %>
</head>
<body id="sideset">
<%= render 'layouts/orbit_bar' unless @no_orbit_bar %>
<%= render 'admin/items/site_bar' unless @side_bar %>
<section id="main-wrap">
<div class="wrap-inner">
<% unless @no_header %>
<div id="filter" class="topnav clearfix">
<ul class="breadcrumb text-info pull-left">
<%= site_breadcrumb %>
<li class="active">All</li>
</ul>
<%= yield :right_nav %>
</div>
<% end %>
<%= yield %>
</div>
</section>
</body>
</html>