<%= link_to(@feed.url, @feed.url) %>
<% @feed.items.each do |item| %>
-
<% r = item.read_at.nil? ? "unread" : "read" %>
<%= link_to raw(item.title), item_path(item), :remote => true, :class => r %>
<%= time_ago_in_words(item.published_at) %> by <%= item.author %>
<% end %>