otwarchive-sunsetarchive/app/views/collections/show.html.erb
2026-03-17 01:16:49 -04:00

20 lines
624 B
Text
Executable file

<div id="collection-page" class="collection home">
<%= render "collections/header", :collection => @collection %>
<!--main content-->
<% # expects @works, @bookmarks %>
<% unless @works.blank? %>
<%= render 'works_module', :collection => @collection, :works => @works %>
<% end %>
<% unless @bookmarks.blank? %>
<%= render 'bookmarks_module', :collection => @collection, :bookmarks => @bookmarks %>
<% end %>
<% if @works.blank? && @bookmarks.blank? %>
<p class="alt message"><%= ts("There are no works or bookmarks in this collection yet.") %></p>
<% end %>
<!--/content-->
</div>