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
2012-04-09 22:18:32 +02:00

8 lines
230 B
Plaintext

<ul>
<% @items.each do |item| %>
<li class="item">
<%= link_to raw(item.title), load_item_feed_path(item), :remote => true %>
<span><%= time_ago_in_words(item.published_at) %> by <%= item.author %></span>
</li>
<% end %>
</ul>