forked from saurabh/orbit4-5
19 lines
406 B
Plaintext
19 lines
406 B
Plaintext
<!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>
|