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

10 lines
294 B
Plaintext

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