1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00
mperham--sidekiq/web/views/layout.erb

33 lines
1.2 KiB
Text
Raw Normal View History

2013-08-21 18:38:52 -04:00
<!doctype html>
<html>
<head>
<title><%= environment_title_prefix %><%= Sidekiq::NAME %></title>
2013-08-21 18:38:52 -04:00
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<link href="<%= root_path %>stylesheets/bootstrap.css" media="screen" rel="stylesheet" type="text/css" />
<link href="<%= root_path %>stylesheets/application.css" media="screen" rel="stylesheet" type="text/css" />
2015-10-05 12:39:56 -04:00
<link rel="shortcut icon" type="image/ico" href="<%= root_path %>images/favicon.ico" />
2013-08-21 18:38:52 -04:00
<script type="text/javascript" src="<%= root_path %>javascripts/application.js"></script>
<script type="text/javascript" src="<%= root_path %>javascripts/locales/jquery.timeago.<%= locale %>.js"></script>
2014-08-01 19:40:42 -04:00
<meta name="google" content="notranslate" />
<%= display_custom_head %>
2013-08-21 18:38:52 -04:00
</head>
<body class="admin">
<%= partial :nav %>
2013-08-21 18:38:52 -04:00
<div id="page">
<div class="container">
<div class="row">
2013-10-01 00:43:24 -04:00
<div class="col-sm-12 summary_bar">
<%= partial :summary %>
2013-08-21 18:38:52 -04:00
</div>
2013-10-01 00:43:24 -04:00
<div class="col-sm-12">
2013-08-21 18:38:52 -04:00
<%= yield %>
</div>
</div>
</div>
</div>
<%= partial :footer %>
<%= partial :poll_js %>
2013-08-21 18:38:52 -04:00
</body>
</html>