<% if @posts.any? %>
<% @posts.each do |post| %>
<%= link_to post.title, blog_post_path(post.url_name) %>
Posted by <%= post.author.full_name %> on <%= post.display_date %>
<%= raw post.content %>
<% end %>
<% else %>
No posts were found in this category
<% end %>
<%= will_paginate @posts %>