summaryrefslogtreecommitdiff
path: root/app/views/search/index.html.erb
blob: bb8f63b734eebda14ef30207e51e47dc23e96fb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
<% if params[:search_term] %>
  <h2><%= t(".results_for", :query => params[:search_term]) %></h2>
<% end %>

<%= 
  render(
    :partial => 'search_result',
    :collection => @results,
    :as => :node
  )
%>