mirror of
https://github.com/mperham/sidekiq.git
synced 2022-11-09 13:52:34 -05:00
23 lines
816 B
Text
23 lines
816 B
Text
<div class="navbar-inner">
|
|
<div class="container">
|
|
<a class="brand" href="<%= root_path %>"><%= Sidekiq::NAME %></a>
|
|
<ul class="nav">
|
|
<% 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 %>
|
|
<% 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>
|