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

21 lines
416 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]-->
<%= stylesheet_link_tag "devise" %>
<%= javascript_include_tag "devise" %>
<%= csrf_meta_tag %>
</head>
<body>
<%= render 'layouts/orbit_bar' %>
<%= yield %>
<div id="sign-footer">
<p>Rulingcom</p>
</div>
</body>
</html>