Sha256: c5466e37a964d2ddf48825662f696cf995b77802d48c524fab7389eed75a2032
Contents?: true
Size: 817 Bytes
Versions: 33
Compression:
Stored size: 817 Bytes
Contents
<% title = current_exhibit.main_navigations.browse.label_or_default %> <% set_html_page_title(title) %> <h1 class="sr-only"><%= title %></h1> <% if @groups.any? # active %> <ul class="browse-group-navigation nav nav-pills justify-content-center"> <li class="nav-item"> <%= link_to t('spotlight.exhibits.groups.all'), exhibit_browse_index_path(current_exhibit), class: "nav-link #{'active' if @group.blank?}" %> </li> <% @groups.each do |group| %> <li class="nav-item"> <%= link_to group.title, exhibit_browse_groups_path(current_exhibit, group), class: "nav-link #{'active' if @group.present? && @group.id == group.id}" %> </li> <% end %> </ul> <% end %> <div class="browse-landing row"> <%= render collection: @searches, partial: 'spotlight/browse/search' %> </div>
Version data entries
33 entries across 33 versions & 1 rubygems