aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/blog/posts/_comment.html.erb
blob: 7b22f3c91d87e965f69592620a18a6e4a65d98bc (plain) (blame)
1
2
3
4
5
6
7
8
9
<div class='blog_comment_message' id='<%= "comment-#{comment.to_param}" %>'>
  <p>
    <%= comment.message.to_s.gsub("\r\n\r\n", "</p><p>").gsub("\r\n", "<br/>") %>
  </p>
</div>
<p class='blog_comment_author'>
  <%= t('blog.posts.comments.by', :who => comment.name) %>,
  <%= t('blog.posts.comments.time_ago', :time => time_ago_in_words(comment.created_at)) %>
</p>