Sha256: d59615343f0dafab86b11929c3f04e968f456d346f7a699bf2f17baf04749ef0
Contents?: true
Size: 1.31 KB
Versions: 9
Compression:
Stored size: 1.31 KB
Contents
<div class="navbar navbar-default navbar-fixed-top"> <div class="navbar-inner"> <div class="container-fluid text-center"> <a class="navbar-brand" href="<%= root_path %>"> <%= Sidekiq::NAME %> <%= erb :_status %> </a> <ul class="nav navbar-nav"> <% Sidekiq::Web.default_tabs.each do |title, url| %> <% if url == '' %> <li class="<%= current_path == url ? 'active' : '' %>"> <a href="<%= root_path %><%= url %>"><%= t(title) %></a> </li> <% else %> <li class="<%= current_path.start_with?(url) ? 'active' : '' %>"> <a href="<%= root_path %><%= url %>"><%= t(title) %></a> </li> <% end %> <% end %> <% Sidekiq::Web.custom_tabs.each do |title, url| %> <li class="<%= current_path.start_with?(url) ? 'active' : '' %>"> <a href="<%= root_path %><%= url %>"><%= t(title) %></a> </li> <% end %> </ul> </div> <div class="poll-wrapper pull-right"> <%= erb :_poll %> <% if Sidekiq::Web.app_url %> <a class="btn btn-inverse" href="<%= Sidekiq::Web.app_url %>">Back to App</a> <% end %> </div> </div> </div>
Version data entries
9 entries across 9 versions & 1 rubygems