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

24 lines
585 B
Plaintext
Raw Normal View History

2012-03-28 10:53:30 +00:00
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<noscript>
2013-03-14 09:48:45 +00:00
<meta http-equiv="refresh" content="0; URL=/desktop/compatibility">
</noscript>
2013-03-13 07:49:20 +00:00
<!--[if lt IE 8]>
<meta http-equiv="refresh" content="0; URL=/compatibility" />
<![endif]-->
2012-03-28 10:53:30 +00:00
<meta charset="utf-8">
<title><%= @title || APP_CONFIG['orbit'] %></title>
<!--[if lt IE 9]>
<%= javascript_include_tag "html5" %>
<![endif]-->
2013-07-30 08:15:04 +00:00
<%= stylesheet_link_tag "desktop/desktop" %>
<%= javascript_include_tag "desktop/desktop" %>
2012-03-28 10:53:30 +00:00
<%= csrf_meta_tag %>
</head>
<body>
<%= yield %>
</body>
</html>