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

43 lines
1.6 KiB
Text
Raw Normal View History

2013-08-21 18:38:52 -04:00
<!doctype html>
<html dir="<%= text_direction %>">
2013-08-21 18:38:52 -04:00
<head>
<title><%= environment_title_prefix %><%= Sidekiq::NAME %></title>
<meta charset="utf-8" />
2013-08-21 18:38:52 -04:00
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
2013-08-21 18:38:52 -04:00
<link href="<%= root_path %>stylesheets/bootstrap.css" media="screen" rel="stylesheet" type="text/css" />
<% if rtl? %>
<link href="<%= root_path %>stylesheets/bootstrap-rtl.min.css" media="screen" rel="stylesheet" type="text/css"/>
<% end %>
2013-08-21 18:38:52 -04:00
<link href="<%= root_path %>stylesheets/application.css" media="screen" rel="stylesheet" type="text/css" />
<link href="<%= root_path %>stylesheets/application-dark.css" media="screen and (prefers-color-scheme: dark)" rel="stylesheet" type="text/css" />
<% if rtl? %>
<link href="<%= root_path %>stylesheets/application-rtl.css" media="screen" rel="stylesheet" type="text/css" />
<% end %>
2021-03-12 19:03:36 -05:00
<link rel="apple-touch-icon" href="<%= root_path %>images/apple-touch-icon.png">
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>
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" data-locale="<%= locale %>">
<%= 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">
<%= erb :_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>
<%= erb :_footer %>
2013-08-21 18:38:52 -04:00
</body>
</html>