<% if article.featured? %>*<%end%> <%= link_to article.title, action: 'show', id: article.id %> <%= article.author + ', ' + article.created_at.to_formatted_s(:short)%>
<%= simple_format article.body %><%= link_to article.votes.where(up: true).size.to_s, article_votes_path(article, :up => true, :sort => params[:sort]), :method => :post, :class => [:plain, :up] %>
<%= link_to article.votes.where(up: false).size.to_s, article_votes_path(article, :up => false, :sort => params[:sort]), :method => :post, :class => [:plain, :down] %>
<% end %>