This repository has been archived on 2021-07-13. You can view files and clone it, but cannot push or open issues or pull requests.
feedfu/app/views/feeds/show.html.erb
2013-01-10 22:21:23 +01:00

13 lines
401 B
Plaintext

<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>