%= render "muted/muted_items_notice" %>
<%= ts('Search Results') %>
<%= ts("You searched for:") %>
<%= (sanitize @search.summary, tags: %w[span], attributes: %w[lang]).html_safe %>
- <%= link_to ts("Edit Your Search"), current_path_with(edit_search: true) %>
<% if @works.blank? %>
<%= ts("No results found. You may want to edit your search to make it less specific.") %>
<% else %>
<%= search_results_found(@works) %> <%= link_to_help "work-search-results-help" %>
Works List
<% @works.each do |work| %>
<% unless work.nil? %>
<%= render :partial => 'work_blurb', :locals => {:work => work} %>
<% end %>
<% end %>
<%= will_paginate @works %>
<% end %>