%= 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 @bookmarks.blank? %>
<%= ts("No results found. You may want to edit your search to make it less specific.") %>
<% else %>
<%= search_results_found(@bookmarks) %> <%= link_to_help "bookmark-search-results-help" %>
Bookmarks List
<% @bookmarks.each do |bookmark| %>
<% unless bookmark.nil? %>
<%= render 'bookmarks/bookmark_blurb', :bookmark => bookmark %>
<% end %>
<% end %>
<%= will_paginate @bookmarks %>
<% end %>