Sha256: 4ae58a233b08dd0fb915e051145d2592ac1c8788a8aaf332037b8bceec96b769
Contents?: true
Size: 833 Bytes
Versions: 23
Compression:
Stored size: 833 Bytes
Contents
<% title = current_exhibit.main_navigations.browse.label_or_default %> <% set_html_page_title(title) %> <h1 class="sr-only visually-hidden"><%= 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
23 entries across 23 versions & 1 rubygems