8 lines
213 B
Text
8 lines
213 B
Text
|
<% @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 %>
|