a4c8be72a7
+ unread count
12 lines
401 B
Text
12 lines
401 B
Text
<h3><%= link_to(@feed.url, @feed.url) %></h3>
|
|
|
|
<ul>
|
|
<% @feed.items.each do |item| %>
|
|
<li class="item">
|
|
<% r = item.read_at.nil? ? "unread" : "read" %>
|
|
<%= link_to raw(item.title), item_path(item), :remote => true, :class => r %>
|
|
<em class="date_published"><%= time_ago_in_words(item.published_at) %></em> <em class="author">by <%= item.author %></em>
|
|
<article></article>
|
|
</li>
|
|
<% end %>
|
|
</ul>
|