orbit-basic/app/views/layouts/devise.html.erb

29 lines
612 B
Plaintext
Raw Normal View History

2012-02-19 08:33:22 +00:00
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title><%= @title || APP_CONFIG['orbit'] %></title>
<!--[if lt IE 9]>
2012-03-21 07:51:55 +00:00
<%= javascript_include_tag "html5" %>
2012-02-19 08:33:22 +00:00
<![endif]-->
2013-10-01 09:39:21 +00:00
<%= 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 %>
2012-02-19 08:33:22 +00:00
</head>
<body>
<%= render 'layouts/orbit_bar' %>
<%= yield %>
</body>
</html>