_comment.html.erb
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:1k
源码类别:

Ajax

开发平台:

Others

  1. <li class="comment <%= 'fdv' if comment.user_id? %>" id="comment-<%= comment.id %>">
  2.   <%= gravatar_tag(comment.email) if this_blog.use_gravatar and comment.email %>
  3.   <h4>
  4.     <%= _("By") %> <%= (comment.url.blank?) ? h(comment.author) : link_to(h(comment.author), comment.url, :rel => "nofollow") %>
  5.     <%= distance_of_time_in_words comment.article.published_at, comment.created_at %> <%= _("later:")%>
  6.   </h4>
  7.   <br class='clear' />
  8.   <div class='thecomment'>
  9.     <%= comment.html %>
  10.     <% unless comment.published -%>
  11.     <div class="spamwarning"><%= _("This comment has been flagged for moderator approval.") %></div>
  12.     <% end -%>    
  13.   </div>
  14. </li>