mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-11-16 01:41:23 +00:00
12 lines
258 B
Text
12 lines
258 B
Text
<% @tweets.each do |item| %>
|
|
|
|
<div class="box wide">
|
|
<h3>
|
|
<%= link_to (longtime item.created_at), item.link %>
|
|
</h3>
|
|
<p>
|
|
<%= raw h item.msg %>
|
|
</p>
|
|
<%= link_to "Comments: #{item.comments.count}", item %>
|
|
</div>
|
|
<% end %>
|