21 lines
451 B
Plaintext
21 lines
451 B
Plaintext
|
<!DOCTYPE HTML>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title><%= @title || APP_CONFIG['orbit'] %></title>
|
||
|
<!--[if lt IE 9]>
|
||
|
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
|
||
|
<![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>
|