web/views/layout.erb in sidekiq-5.0.0.beta2 vs web/views/layout.erb in sidekiq-5.0.0.beta3

- old
+ new

@@ -1,12 +1,21 @@ <!doctype html> -<html> +<html dir="<%= text_direction %>"> <head> <title><%= environment_title_prefix %><%= Sidekiq::NAME %></title> <meta charset="utf8" /> <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" /> + <% if rtl? %> + <link href="<%= root_path %>stylesheets/bootstrap-rtl.min.css" media="screen" rel="stylesheet" type="text/css"/> + <% end %> + <link href="<%= root_path %>stylesheets/application.css" media="screen" rel="stylesheet" type="text/css" /> + <% if rtl? %> + <link href="<%= root_path %>stylesheets/application-rtl.css" media="screen" rel="stylesheet" type="text/css" /> + <% end %> + <link rel="shortcut icon" type="image/ico" href="<%= root_path %>images/favicon.ico" /> <script type="text/javascript" src="<%= root_path %>javascripts/application.js"></script> <meta name="google" content="notranslate" /> <%= display_custom_head %> </head>