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

30 lines
1 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" />
<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" />
2013-08-21 18:38:52 -04:00
</head>
<body class="admin">
2014-08-01 19:40:42 -04:00
<%= erb :_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">
2013-08-21 18:38:52 -04:00
<%= erb :_summary %>
</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>
2014-08-01 19:40:42 -04:00
<%= erb :_footer %>
2013-08-21 18:38:52 -04:00
</body>
</html>