forked from saurabh/orbit4-5
30 lines
659 B
Plaintext
30 lines
659 B
Plaintext
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>RulingOrbit | <%= current_site.title %></title>
|
|
<!--[if lt IE 9]>
|
|
<%= javascript_include_tag "html5" %>
|
|
<![endif]-->
|
|
<%= render 'shared/meta' %>
|
|
<%= render 'shared/google_font' %>
|
|
<%= stylesheet_link_tag "basic/global" %>
|
|
<%= stylesheet_link_tag "basic" %>
|
|
<%= stylesheet_link_tag "sign_up" %>
|
|
|
|
<%= render 'shared/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_backend' %>
|
|
<%= yield %>
|
|
</body>
|
|
</html>
|