10 lines
238 B
Plaintext
10 lines
238 B
Plaintext
<% if @results.any? %>
|
|
<h3>Similar</h3>
|
|
<% @results.each do |match| %>
|
|
<%= PostPresenter.preview(match[:post], :tags => "status:any", :size => true) %>
|
|
<% end %>
|
|
<% else %>
|
|
<h3>Similar</h3>
|
|
<p>No matches found</p>
|
|
<% end %>
|