summaryrefslogtreecommitdiff
path: root/app/views/search/index.html.erb
blob: 9824b8f41725898e8afae944aa02641c33c64b98 (plain)
1
2
3
4
5
6
7
8
9
10
11
<% if params[:search_term] %>
  <h2>Suchergebnisse für Suchbegriff: <%=h params[:search_term] %></h2>
<% end %>

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