<%= form_tag '/blog/category' do %> <%= spud_post_category_select %> <% end %>
<%= form_tag '/blog/archive' do %> <%= spud_post_archive_select %> <% end %>
<% 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 %>