holderdeord/hdo-site

View on GitHub
app/views/search/_topic_results.html.erb

Summary

Maintainability
Test Coverage
<h3><%= Topic.model_name.human(count: 2).capitalize %></h3>

<ul>
  <% results.sort_by(&:name).each do |r| %>
    <li>
      <%= link_to r.name, topic_path(r.slug) %>
    </li>
  <% end %>
</ul>