forked from bofh/fetsite
21 lines
627 B
Plaintext
21 lines
627 B
Plaintext
<% unless search_results.nil? %>
|
|
<%= search_results %>
|
|
<ul>
|
|
<% search_results.each_hit_with_result do |hit,result| %>
|
|
<li> <%= link_to result.parent.title+": " + result.name, document_path(result) %>
|
|
<% hit.highlights(:name).each do |hlgt| %>
|
|
<%= raw(hlgt.format{|word|"<b>#{word}</b>" } ) %>
|
|
<% end %>
|
|
<% %>
|
|
<% hit.highlights(:text).each do |hlgt| %>
|
|
<%= "text:" + raw(hlgt.format {|word| raw("<b>#{word}</b>") })%>
|
|
<% end %>
|
|
<% hit.highlights(:meeting).each do |hlgt| %>
|
|
<%= "text:" + raw(hlgt.format {|word| "*#{word}*" })%>
|
|
<% end %>
|
|
|
|
</li>
|
|
<% end %>
|
|
</ul>
|
|
<% end %>
|