8 lines
No EOL
271 B
Text
8 lines
No EOL
271 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>
|
|
</li>
|
|
<% end %>
|
|
</ul> |