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-08 04:04:37 +02:00

8 lines
213 B
Plaintext

<% @items.each do |item| %>
<div class="item">
<h2><%= raw(item.title) %></h2>
<span><%= time_ago_in_words(item.published_at) %> by <%= item.author %></span>
<p><%= raw(item.content) %></p>
</div>
<% end %>