<%= link_to article.title, "/blog/#{article.post_url}" %>
<%= article.summary %>
<%= @author.name %>
<%
read_time = "4 MIN READ"
if article.content.present? && !article.content.nil?
doc = Hpricot(article.content)
words = doc.inner_text.split.count
if words > 0
read_time = "#{words/200} MIN READ"
end
end
%>
<%= read_time %>
<%= link_to "/blog/#{article.anchor_tag.url}" do %>
<%= article.anchor_tag.name %>
<% end %>