Sha256: 927acdb4f437a50a91c0c371050d710c79cbd9a7e09feb52a0c26767c2d07cd2
Contents?: true
Size: 735 Bytes
Versions: 12
Compression:
Stored size: 735 Bytes
Contents
<div class="col-md-9"> <% if @exhibits.published.none? %> <%= render 'missing_exhibits' %> <% end %> <%= cache cache_key_for_spotlight_exhibits do %> <% @exhibits.published.each_slice(3).each do |row| %> <div class="row"><!-- start main content row --> <%= render collection: row, partial: 'exhibit_card', as: 'exhibit' %> </div> <% end %> <% end %> <% private_exhibits = @exhibits.unpublished.accessible_by(current_ability) %> <% if private_exhibits.any? %> <h2><%= t(:'.private') %></h2> <ul> <%= render collection: private_exhibits, partial: 'exhibit_list', as: 'exhibit' %> </ul> <% end %> </div> <aside class="col-md-3"> <%= render "shared/home_sidebar" %> </aside>
Version data entries
12 entries across 12 versions & 1 rubygems