Sha256: 024d139844d17e24ef2926564a2f3225075c0e9b4b157209f32d4e0a3ba5b6fc
Contents?: true
Size: 673 Bytes
Versions: 6
Compression:
Stored size: 673 Bytes
Contents
<%= content_tag(:article, id: "blog_comment_#{comment.id}", class: "blog_comment") do %> <%= content_tag(:div, class: "blog_comment_name", id: "blog_comment_#{comment.id}_name") do %> <%= comment.website? ? link_to(comment.name, comment.website) : comment.name %> wrote: <% end %> <%= content_tag(:div, comment.body, class: "blog_comment_body", id: "blog_comment_#{comment.id}_body") %> <%= blog_comment_tag(:footer) do %> Posted on <%= time_tag(post.created_at, Blogit.configuration.datetime_format) %> <% end %> <%= login_required(class: "actions") do %> <%= link_to("delete", [post, comment], method: :delete) %> <% end %> <% end %>
Version data entries
6 entries across 6 versions & 1 rubygems