29 lines
612 B
Plaintext
29 lines
612 B
Plaintext
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title><%= @title || APP_CONFIG['orbit'] %></title>
|
|
<!--[if lt IE 9]>
|
|
<%= javascript_include_tag "html5" %>
|
|
<![endif]-->
|
|
<%= render 'layouts/meta' %>
|
|
<%= render 'layouts/google_font' %>
|
|
<%= stylesheet_link_tag "basic/global" %>
|
|
<%= stylesheet_link_tag "basic" %>
|
|
|
|
<%= render 'layouts/ie_html5_fix' %>
|
|
<%= javascript_include_tag "basic" %>
|
|
<%= yield :page_specific_css %>
|
|
<%= yield :page_specific_javascript %>
|
|
|
|
<style>
|
|
|
|
</style>
|
|
<%= csrf_meta_tag %>
|
|
</head>
|
|
<body>
|
|
<%= render 'layouts/orbit_bar' %>
|
|
<%= yield %>
|
|
</body>
|
|
</html>
|