otwarchive-symphonyarchive/app/views/series/index.html.erb
2026-03-11 22:22:11 +00:00

28 lines
690 B
Text

<!--descriptive page name and system messages, descriptions, and instructions.-->
<%= render "muted/muted_items_notice" %>
<h2 class="heading">
<% if @user %>
<%= search_header @series, nil, "Series", @pseud ? @pseud : @user %>
<% else %>
<%=h "View All Series" %>
<% end %>
</h2>
<!-- /descriptions-->
<!--subnavigation-->
<%= will_paginate @series %>
<!--subnav-->
<!--Main content-->
<h3 class="landmark heading">Listing Series</h3>
<ul class="series index group">
<% for series in @series %>
<%= render :partial => 'series/series_blurb', :locals => {:series => series} %>
<% end %>
</ul>
<!-- /content-->
<!--subnav-->
<%= will_paginate @series %>
<!--/subnav-->