mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-11-15 09:21:25 +00:00
17 lines
291 B
Text
17 lines
291 B
Text
<h1>
|
|
Recent comments
|
|
</h1>
|
|
|
|
<% @comments.each do |comment| %>
|
|
<div class="box wide">
|
|
<h3>
|
|
<%= namelink comment.user %>
|
|
on <%= namelink comment.commentable %>
|
|
( <%= longtime comment.created_at %> )
|
|
</h3>
|
|
|
|
<p>
|
|
<%= comment.text_parsed %>
|
|
</p>
|
|
</div>
|
|
<% end %>
|