Sha256: 7d2c02b897bcbc0a7ae299516078e16e9eef830b6b515b910e8d2f9f1f7e207d
Contents?: true
Size: 596 Bytes
Versions: 6
Compression:
Stored size: 596 Bytes
Contents
<ol id="comments" class="comments"> <% for comment in @article.comments -%> <li class="comment" id="comment-<%= comment.id %>"> <div class="author"> <%= content_tag(:div, gravatar_tag(comment.email)) if config_value(:use_gravatar) and comment.email %> <cite><%= (comment.url.blank?) ? h(comment.author) : link_to(h(comment.author), comment.url) %></cite> <abbr title="<%= comment.created_at.xmlschema %>"><%= js_distance_of_time_in_words_to_now comment.created_at %></abbr> </div> <div class="content"> <%= comment_html(comment) %> </div> </li> <% end -%> </ol>
Version data entries
6 entries across 6 versions & 1 rubygems