2013-08-21 18:38:52 -04:00
|
|
|
<!doctype html>
|
2017-03-16 16:51:29 -04:00
|
|
|
<html dir="<%= text_direction %>">
|
2013-08-21 18:38:52 -04:00
|
|
|
<head>
|
2014-10-15 22:51:04 -04:00
|
|
|
<title><%= environment_title_prefix %><%= Sidekiq::NAME %></title>
|
2018-07-06 01:35:58 -04:00
|
|
|
<meta charset="utf-8" />
|
2013-08-21 18:38:52 -04:00
|
|
|
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
|
2017-03-16 16:51:29 -04:00
|
|
|
|
2013-08-21 18:38:52 -04:00
|
|
|
<link href="<%= root_path %>stylesheets/bootstrap.css" media="screen" rel="stylesheet" type="text/css" />
|
2017-03-16 16:51:29 -04:00
|
|
|
<% 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" />
|
2020-03-23 08:37:35 -04:00
|
|
|
<link href="<%= root_path %>stylesheets/application-dark.css" media="screen and (prefers-color-scheme: dark)" rel="stylesheet" type="text/css" />
|
2017-03-16 16:51:29 -04:00
|
|
|
<% 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" />
|
2015-03-11 05:38:52 -04:00
|
|
|
<%= display_custom_head %>
|
2013-08-21 18:38:52 -04:00
|
|
|
</head>
|
2021-08-30 15:31:41 -04:00
|
|
|
<body class="admin" data-locale="<%= locale %>">
|
2016-07-28 22:36:21 -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">
|
2016-07-28 22:36:21 -04:00
|
|
|
<%= 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>
|
2016-07-28 22:36:21 -04:00
|
|
|
<%= erb :_footer %>
|
2013-08-21 18:38:52 -04:00
|
|
|
</body>
|
|
|
|
</html>
|