9 lines
294 B
Text
9 lines
294 B
Text
<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>
|