This avoids having to build them in multiple places and also ensures we link to what was actually searched rather than some random string from the locale file.
16 lines
606 B
Text
16 lines
606 B
Text
<% set_title(@params[:query]) %>
|
|
|
|
<%= render "sidebar_header", :title => t("site.sidebar.search_results") %>
|
|
|
|
<% @sources.each do |source| %>
|
|
<h4>
|
|
<%= t(".title.results_from_html", :results_link => link_to(t(".title.#{source[:name]}"), source[:url].to_s)) %>
|
|
</h4>
|
|
<div class="search_results_entry mx-n3" data-href="<%= url_for @params.merge(:action => "search_#{source[:name]}") %>">
|
|
<div class="text-center loader">
|
|
<div class="spinner-border" role="status">
|
|
<span class="visually-hidden"><%= t("browse.start_rjs.loading") %></span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<% end %>
|