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

19 lines
406 B
Plaintext
Raw Normal View History

2014-05-16 06:49:42 +00:00
<!DOCTYPE HTML>
<html>
<head>
<title><%= @title %></title>
<%= render 'shared/google_font' %>
<%= stylesheet_link_tag "back_end" %>
<%= yield :page_specific_css %>
<%= render 'shared/ie_html5_fix' %>
<%= javascript_include_tag "back_end" %>
<%= yield :page_specific_javascript %>
<%= csrf_meta_tag %>
</head>
<body id="dashboards">
<section>
<%= yield %>
</section>
</body>
</html>